Skip to content
Snippets Groups Projects
Commit a8125145 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

fix show/hide app sidebar functions

parent 5af59c68
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,8 @@
var $appSidebar = $('#app-sidebar');
$appSidebar
.removeClass('disappear')
.find('~ .with-app-sidebar').removeClass('.with-app-sidebar');
.find('~').addClass('with-app-sidebar');
};
/**
......@@ -38,7 +39,7 @@
var $appSidebar = $('#app-sidebar');
$appSidebar
.addClass('disappear')
.find('~').addClass('.with-app-sidebar');
.find('~ .with-app-sidebar').removeClass('with-app-sidebar');
};
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment