From 17f46f4eca45ee3738ebf039cad6618ca3e407f2 Mon Sep 17 00:00:00 2001 From: Nicolas Bourasseau Date: Wed, 10 Apr 2019 16:34:28 +0200 Subject: [PATCH] Update adminlte.js Fixing bug throwing error "Uncaught ReferenceError: expandingEvent is not defined" when collapsing .box . --- dist/js/adminlte.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/js/adminlte.js b/dist/js/adminlte.js index bf6d10669..11da150a8 100644 --- a/dist/js/adminlte.js +++ b/dist/js/adminlte.js @@ -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 () {