1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

.sideNav() to .sidenav()

This commit is contained in:
Yassine Guedidi 2025-02-18 22:47:32 +01:00
parent e68122d21a
commit 0d9453d7ec
2 changed files with 5 additions and 5 deletions

View file

@ -32,7 +32,7 @@ function initFilters() {
// no display if filters not available
if ($('div').is('#filters')) {
$('#button_filters').show();
$('.js-filters-action').sideNav({ edge: 'right' });
$('.js-filters-action').sidenav({ edge: 'right' });
$('#clear_form_filters').on('click', () => {
$('#filters input').val('');
$('#filters :checked').removeAttr('checked');
@ -46,7 +46,7 @@ function initExport() {
// no display if export not available
if ($('div').is('#export')) {
$('#button_export').show();
$('.js-export-action').sideNav({ edge: 'right' });
$('.js-export-action').sidenav({ edge: 'right' });
}
}