pull/1109/head
Abdullah Almsaeed 2016-06-28 16:03:18 -04:00
parent 8438a30eaa
commit bcd808d203
1 changed files with 17 additions and 17 deletions

8
dist/js/app.js vendored
View File

@ -62,7 +62,7 @@ $.AdminLTE.options = {
//native touch experience with touch devices. If you
//choose to enable the plugin, make sure you load the script
//before AdminLTE's app.js
enableFastclick: true,
enableFastclick: false,
//Control Sidebar Options
enableControlSidebar: true,
controlSidebarOptions: {
@ -672,7 +672,7 @@ function _init() {
})(jQuery);
/*
/*
* EXPLICIT BOX CONTROLS
* -----------------------
* This is a custom plugin to use with the component BOX. It allows you to activate
@ -691,12 +691,12 @@ function _init() {
$.AdminLTE.boxWidget.activate(this);
};
$.fn.toggleBox = function(){
$.fn.toggleBox = function () {
var button = $($.AdminLTE.boxWidget.selectors.collapse, this);
$.AdminLTE.boxWidget.collapse(button);
};
$.fn.removeBox = function(){
$.fn.removeBox = function () {
var button = $($.AdminLTE.boxWidget.selectors.remove, this);
$.AdminLTE.boxWidget.remove(button);
};