mirror of https://github.com/ColorlibHQ/gentelella
Fix error on data tables export functionalities
parent
b6c8393097
commit
790a237cd7
|
@ -4,7 +4,7 @@
|
||||||
* and open the template in the editor.
|
* and open the template in the editor.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var URL = window.location.href.split('?')[0],
|
var CURRENT_URL = window.location.href.split('?')[0],
|
||||||
$BODY = $('body'),
|
$BODY = $('body'),
|
||||||
$MENU_TOGGLE = $('#menu_toggle'),
|
$MENU_TOGGLE = $('#menu_toggle'),
|
||||||
$SIDEBAR_MENU = $('#sidebar-menu'),
|
$SIDEBAR_MENU = $('#sidebar-menu'),
|
||||||
|
@ -74,10 +74,10 @@ $(document).ready(function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
// check active menu
|
// check active menu
|
||||||
$SIDEBAR_MENU.find('a[href="' + URL + '"]').parent('li').addClass('current-page');
|
$SIDEBAR_MENU.find('a[href="' + CURRENT_URL + '"]').parent('li').addClass('current-page');
|
||||||
|
|
||||||
$SIDEBAR_MENU.find('a').filter(function () {
|
$SIDEBAR_MENU.find('a').filter(function () {
|
||||||
return this.href == URL;
|
return this.href == CURRENT_URL;
|
||||||
}).parent('li').addClass('current-page').parents('ul').slideDown(function() {
|
}).parent('li').addClass('current-page').parents('ul').slideDown(function() {
|
||||||
setContentHeight();
|
setContentHeight();
|
||||||
}).parent().addClass('active');
|
}).parent().addClass('active');
|
||||||
|
|
Loading…
Reference in New Issue