Skip to content
Code-Schnipsel Gruppen Projekte
Commit f2b4bc06 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix: undefined elm

Übergeordneter a6f098eb
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
......@@ -31,7 +31,7 @@ define('qui/controls/utils/Background', ['qui/controls/Control'], function (Cont
initialize: function (params) {
this.parent(params);
this.$FX = null;
},
......@@ -140,7 +140,9 @@ define('qui/controls/utils/Background', ['qui/controls/Control'], function (Cont
}, {
duration: 200,
callback: function () {
this.$Elm.setStyle('display', 'none');
if (this.$Elm) {
this.$Elm.setStyle('display', 'none');
}
if (typeof callback === 'function') {
callback();
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren