]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/Resources/static/themes/material/js/tools.js
Fix displaying sidenav
[github/wallabag/wallabag.git] / app / Resources / static / themes / material / js / tools.js
1 import $ from 'jquery';
2
3 function initFilters() {
4 // no display if filters not available
5 if ($('div').is('#filters')) {
6 $('#button_filters').show();
7 $('.js-filters-action').sideNav({ edge: 'right' });
8 $('#clear_form_filters').on('click', () => {
9 $('#filters input').val('');
10 $('#filters :checked').removeAttr('checked');
11
12 return false;
13 });
14 }
15 }
16
17 function initExport() {
18 // no display if export not available
19 if ($('div').is('#export')) {
20 $('#button_export').show();
21 $('.js-export-action').sideNav({ edge: 'right' });
22 }
23 }
24
25 function initRandom() {
26 // no display if export (ie: entries) not available
27 if ($('div').is('#export')) {
28 $('#button_random').show();
29 }
30 }
31
32 function initSort() {
33 // no display if export (ie: entries) not available
34 if ($('div').is('#sort')) {
35 $('#button_sort').show();
36 $('.js-sort-action').sideNav({ edge: 'right' });
37 }
38 }
39
40 export {
41 initExport,
42 initFilters,
43 initRandom,
44 initSort,
45 };