diff options
author | Simounet <contact@simounet.net> | 2016-12-29 19:17:36 +0100 |
---|---|---|
committer | Simounet <contact@simounet.net> | 2016-12-30 14:00:19 +0100 |
commit | ccb9e79a35cdac9f93de90f577f8ec63fdcc6081 (patch) | |
tree | 309f87ef36f9fe29f70621f1dedf659926691949 /app/Resources | |
parent | 339b1e689d96b433d88ca1ad2325031841ae450d (diff) | |
download | wallabag-ccb9e79a35cdac9f93de90f577f8ec63fdcc6081.tar.gz wallabag-ccb9e79a35cdac9f93de90f577f8ec63fdcc6081.tar.zst wallabag-ccb9e79a35cdac9f93de90f577f8ec63fdcc6081.zip |
Fix double overlay on expanded right sidenav
Diffstat (limited to 'app/Resources')
-rw-r--r-- | app/Resources/static/themes/_global/js/tools.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Resources/static/themes/_global/js/tools.js b/app/Resources/static/themes/_global/js/tools.js index 568b2dce..cee84fa8 100644 --- a/app/Resources/static/themes/_global/js/tools.js +++ b/app/Resources/static/themes/_global/js/tools.js | |||
@@ -35,7 +35,7 @@ function initFilters() { | |||
35 | // no display if filters not available | 35 | // no display if filters not available |
36 | if ($('div').is('#filters')) { | 36 | if ($('div').is('#filters')) { |
37 | $('#button_filters').show(); | 37 | $('#button_filters').show(); |
38 | $('.button-collapse-right').sideNav({ edge: 'right' }); | 38 | $('.js-filters-action').sideNav({ edge: 'right' }); |
39 | $('#clear_form_filters').on('click', () => { | 39 | $('#clear_form_filters').on('click', () => { |
40 | $('#filters input').val(''); | 40 | $('#filters input').val(''); |
41 | $('#filters :checked').removeAttr('checked'); | 41 | $('#filters :checked').removeAttr('checked'); |
@@ -48,7 +48,7 @@ function initExport() { | |||
48 | // no display if export not available | 48 | // no display if export not available |
49 | if ($('div').is('#export')) { | 49 | if ($('div').is('#export')) { |
50 | $('#button_export').show(); | 50 | $('#button_export').show(); |
51 | $('.button-collapse-right').sideNav({ edge: 'right' }); | 51 | $('.js-export-action').sideNav({ edge: 'right' }); |
52 | } | 52 | } |
53 | } | 53 | } |
54 | 54 | ||