Merge pull request #699 from lukechilds/master

Attach push menu event listener to document
pull/712/head
Abdullah Almsaeed 2015-09-23 20:37:38 -04:00
commit 9505f59ac6
2 changed files with 4 additions and 4 deletions

6
dist/js/app.js vendored
View File

@ -314,7 +314,7 @@ function _init() {
var screenSizes = $.AdminLTE.options.screenSizes;
//Enable sidebar toggle
$(toggleBtn).on('click', function (e) {
$(document).on('click', toggleBtn, function (e) {
e.preventDefault();
//Enable sidebar push menu
@ -690,12 +690,12 @@ function _init() {
$.fn.activateBox = function () {
$.AdminLTE.boxWidget.activate(this);
};
$.fn.toggleBox = function(){
var button = $($.AdminLTE.boxWidget.selectors.collapse, this);
$.AdminLTE.boxWidget.collapse(button);
};
$.fn.removeBox = function(){
var button = $($.AdminLTE.boxWidget.selectors.remove, this);
$.AdminLTE.boxWidget.remove(button);

2
dist/js/app.min.js vendored

File diff suppressed because one or more lines are too long