Merge branch 'master' of gitlab.cip.ifi.lmu.de:jost/UniWorX
This commit is contained in:
commit
100c055d7c
@ -217,7 +217,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function destroyUtils() {
|
function destroyUtils() {
|
||||||
utilInstances.forEach(function(utilInstance) {
|
utilInstances.filter(function(utilInstance) {
|
||||||
|
return !!utilInstance;
|
||||||
|
}).forEach(function(utilInstance) {
|
||||||
utilInstance.destroy();
|
utilInstance.destroy();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -48,7 +48,9 @@
|
|||||||
form.classList.add(JS_INITIALIZED);
|
form.classList.add(JS_INITIALIZED);
|
||||||
|
|
||||||
function destroyUtils() {
|
function destroyUtils() {
|
||||||
utilInstances.forEach(function(utilInstance) {
|
utilInstances.filter(function(utilInstance) {
|
||||||
|
return !!utilInstance;
|
||||||
|
}).forEach(function(utilInstance) {
|
||||||
utilInstance.destroy();
|
utilInstance.destroy();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -38,7 +38,9 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
function destroyUtils() {
|
function destroyUtils() {
|
||||||
utilInstances.forEach(function(utilInstance) {
|
utilInstances.filter(function(utilInstance) {
|
||||||
|
return !!utilInstance;
|
||||||
|
}).forEach(function(utilInstance) {
|
||||||
utilInstance.destroy();
|
utilInstance.destroy();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -140,7 +140,9 @@
|
|||||||
setup();
|
setup();
|
||||||
|
|
||||||
function destroyUtils() {
|
function destroyUtils() {
|
||||||
utilInstances.forEach(function(utilInstance) {
|
utilInstances.filter(function(utilInstance) {
|
||||||
|
return !!utilInstance;
|
||||||
|
}).forEach(function(utilInstance) {
|
||||||
utilInstance.destroy();
|
utilInstance.destroy();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user