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