mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-13 04:21:19 +00:00
50f35f0db2
Change the way to select a random entry: - select all ids from the given user (with filters) - choose randomly one in php - find that entry
36 lines
779 B
JavaScript
36 lines
779 B
JavaScript
import $ from 'jquery';
|
|
|
|
function initFilters() {
|
|
// no display if filters not available
|
|
if ($('div').is('#filters')) {
|
|
$('#button_filters').show();
|
|
$('.js-filters-action').sideNav({ edge: 'right' });
|
|
$('#clear_form_filters').on('click', () => {
|
|
$('#filters input').val('');
|
|
$('#filters :checked').removeAttr('checked');
|
|
|
|
return false;
|
|
});
|
|
}
|
|
}
|
|
|
|
function initExport() {
|
|
// no display if export not available
|
|
if ($('div').is('#export')) {
|
|
$('#button_export').show();
|
|
$('.js-export-action').sideNav({ edge: 'right' });
|
|
}
|
|
}
|
|
|
|
function initRandom() {
|
|
// no display if export (ie: entries) not available
|
|
if ($('div').is('#export')) {
|
|
$('#button_random').show();
|
|
}
|
|
}
|
|
|
|
export {
|
|
initExport,
|
|
initFilters,
|
|
initRandom,
|
|
};
|