|  | @@ -41,7 +41,7 @@ $.AdminLTE.options = {
 | 
	
		
			
				|  |  |    navbarMenuSlimscroll: true,
 | 
	
		
			
				|  |  |    navbarMenuSlimscrollWidth: "3px", //The width of the scroll bar
 | 
	
		
			
				|  |  |    navbarMenuHeight: "200px", //The height of the inner menu
 | 
	
		
			
				|  |  | -  //General animation speed for JS animated elements such as box collapse/expand and 
 | 
	
		
			
				|  |  | +  //General animation speed for JS animated elements such as box collapse/expand and
 | 
	
		
			
				|  |  |    //sidebar treeview slide up/down. This options accepts an integer as milliseconds,
 | 
	
		
			
				|  |  |    //'fast', 'normal', or 'slow'
 | 
	
		
			
				|  |  |    animationSpeed: 500,
 | 
	
	
		
			
				|  | @@ -464,7 +464,7 @@ function _init() {
 | 
	
		
			
				|  |  |        var bg = $(".control-sidebar-bg");
 | 
	
		
			
				|  |  |        _this._fix(bg);
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -      //If the body has a fixed layout, make the control sidebar fixed      
 | 
	
		
			
				|  |  | +      //If the body has a fixed layout, make the control sidebar fixed
 | 
	
		
			
				|  |  |        if ($('body').hasClass('fixed')) {
 | 
	
		
			
				|  |  |          _this._fixForFixed(sidebar);
 | 
	
		
			
				|  |  |        } else {
 | 
	
	
		
			
				|  | @@ -481,7 +481,7 @@ function _init() {
 | 
	
		
			
				|  |  |        if (slide) {
 | 
	
		
			
				|  |  |          sidebar.addClass('control-sidebar-open');
 | 
	
		
			
				|  |  |        } else {
 | 
	
		
			
				|  |  | -        //Push the content by adding the open class to the body instead 
 | 
	
		
			
				|  |  | +        //Push the content by adding the open class to the body instead
 | 
	
		
			
				|  |  |          //of the sidebar itself
 | 
	
		
			
				|  |  |          $('body').addClass('control-sidebar-open');
 | 
	
		
			
				|  |  |        }
 | 
	
	
		
			
				|  | @@ -534,7 +534,7 @@ function _init() {
 | 
	
		
			
				|  |  |    $.AdminLTE.boxWidget = {
 | 
	
		
			
				|  |  |      selectors: $.AdminLTE.options.boxWidgetOptions.boxWidgetSelectors,
 | 
	
		
			
				|  |  |      icons: $.AdminLTE.options.boxWidgetOptions.boxWidgetIcons,
 | 
	
		
			
				|  |  | -    animationSpeed: $.AdminLTE.options.animationSpeed,    
 | 
	
		
			
				|  |  | +    animationSpeed: $.AdminLTE.options.animationSpeed,
 | 
	
		
			
				|  |  |      activate: function (_box) {
 | 
	
		
			
				|  |  |        var _this = this;
 | 
	
		
			
				|  |  |        if (! _box) {
 | 
	
	
		
			
				|  | @@ -578,7 +578,7 @@ function _init() {
 | 
	
		
			
				|  |  |          });
 | 
	
		
			
				|  |  |        }
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  | -    remove: function (element) {     
 | 
	
		
			
				|  |  | +    remove: function (element) {
 | 
	
		
			
				|  |  |        //Find the box parent
 | 
	
		
			
				|  |  |        var box = element.parents(".box").first();
 | 
	
		
			
				|  |  |        box.slideUp(this.animationSpeed);
 |