Skip to content

Commit

Permalink
AdminLTE update and fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien HEYD committed Feb 13, 2018
1 parent 1810355 commit 4bd0314
Show file tree
Hide file tree
Showing 6 changed files with 4,206 additions and 12 deletions.
5 changes: 4 additions & 1 deletion src/ViewComposers/MenuComposer.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ public function compose(View $view)
}
});

$view->with('menu', $menu->sortBy('order')->asUl([ 'class' => 'sidebar-menu' ], [ 'class' => 'treeview-menu' ]));
$view->with('menu', $menu->sortBy('order')->asUl([
'class' => 'sidebar-menu',
'data-widget' => "tree"
], [ 'class' => 'treeview-menu' ]));
}
}
1 change: 1 addition & 0 deletions src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"bootbox": "^4.4.0",
"bootstrap": "3.3.7",
"bootstrap-fileinput": "^4.3.8",
"bootstrap-growl": "^3.1.3",
"bootstrap-notify": "^3.1.3",
"cross-env": "^5.1.3",
"css-spacing": "^1.0.6",
Expand Down
4,152 changes: 4,148 additions & 4 deletions src/public/css/boilerplate.css

Large diffs are not rendered by default.

56 changes: 51 additions & 5 deletions src/public/js/boilerplate.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<span class="logo-lg">{!! config('boilerplate.app.logo-lg') !!}</span>
</a>
<nav class="navbar navbar-static-top">
<a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
<a href="#" class="sidebar-toggle" data-toggle="push-menu" role="button">
<span class="sr-only">Toggle</span>
</a>
<div class="navbar-custom-menu">
Expand Down
2 changes: 1 addition & 1 deletion src/webpack.mix.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ mix.setPublicPath("public")
mix.scripts([
'node_modules/jquery/dist/jquery.min.js',
'node_modules/bootstrap/dist/js/bootstrap.min.js',
'node_modules/admin-lte/dist/js/app.min.js',
'node_modules/admin-lte/dist/js/adminlte.min.js',
'node_modules/bootbox/bootbox.min.js',
'node_modules/bootstrap-growl/bootstrap-notify.min.js',
'resources/assets/js/boilerplate.js'
Expand Down

0 comments on commit 4bd0314

Please sign in to comment.