Merge pull request #1268 from eryshev/master

Add option to control sidemenu's tree views.
This commit is contained in:
Abdullah Almsaeed
2017-01-06 11:01:55 -05:00
committed by GitHub
3 changed files with 9 additions and 1 deletions

6
dist/js/app.js vendored
View File

@@ -63,6 +63,8 @@ $.AdminLTE.options = {
//choose to enable the plugin, make sure you load the script
//before AdminLTE's app.js
enableFastclick: false,
//Control Sidebar Tree views
enableControlTreeView: true,
//Control Sidebar Options
enableControlSidebar: true,
controlSidebarOptions: {
@@ -160,7 +162,9 @@ $(function () {
$.AdminLTE.layout.activate();
//Enable sidebar tree view controls
$.AdminLTE.tree('.sidebar');
if (o.enableControlTreeView) {
$.AdminLTE.tree('.sidebar');
}
//Enable control sidebar
if (o.enableControlSidebar) {

View File

@@ -54,6 +54,8 @@
//choose to enable the plugin, make sure you load the script
//before AdminLTE's app.js
enableFastclick: true,
//Control Sidebar Tree Views
enableControlTreeView: true,
//Control Sidebar Options
enableControlSidebar: true,
controlSidebarOptions: {

View File

@@ -358,6 +358,8 @@ AdminLTE/
//choose to enable the plugin, make sure you load the script
//before AdminLTE's app.js
enableFastclick: true,
//Control Sidebar Tree Views
enableControlTreeView: true,
//Control Sidebar Options
enableControlSidebar: true,
controlSidebarOptions: {