Update adminlte.js

Fixing bug throwing error "Uncaught ReferenceError: expandingEvent is not defined" when collapsing .box .
This commit is contained in:
Nicolas Bourasseau
2019-04-10 16:34:28 +02:00
committed by GitHub
parent 1d943023e3
commit 17f46f4eca

2
dist/js/adminlte.js vendored
View File

@@ -241,7 +241,7 @@ throw new Error('AdminLTE requires jQuery')
$(this.element).addClass(ClassName.collapsed);
$(this.element).trigger(collapsedEvent);
}.bind(this))
.trigger(expandingEvent);
.trigger(collapsingEvent);
};
BoxWidget.prototype.remove = function () {