fix(password): added cleanUP

This commit is contained in:
Johannes Eder 2021-08-06 18:39:40 +02:00 committed by Sarah Vaupel
parent 0688eef70c
commit 204ce39f7c
2 changed files with 5 additions and 4 deletions

View File

@ -462,10 +462,10 @@ export class AsyncTable {
).finally(() => this._element.classList.remove(ASYNC_TABLE_LOADING_CLASS));
}
//_debugLog() {}
_debugLog(fName, ...args) {
console.log(`[DEBUGLOG] AsyncTable.${fName}`, { args: args, instance: this });
}
_debugLog() {}
//_debugLog(fName, ...args) {
// console.log(`[DEBUGLOG] AsyncTable.${fName}`, { args: args, instance: this });
// }
}

View File

@ -67,6 +67,7 @@ export class Password {
}
destroy() {
this._eventManager.cleanUp();
this._iconEl.remove();
this._toggleContainerEl.remove();
this._wrapperEl.remove();