mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-14 04:46:34 +00:00
Move removing init message back to root component
This commit is contained in:
parent
04a7ce241c
commit
bd9d9e8815
@ -77,4 +77,10 @@ export default new Polymer({
|
|||||||
|
|
||||||
this.loadIcons();
|
this.loadIcons();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
attached() {
|
||||||
|
// remove the HTML init message
|
||||||
|
const initMsg = document.getElementById('init');
|
||||||
|
initMsg.parentElement.removeChild(initMsg);
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
@ -84,10 +84,4 @@ export default new Polymer({
|
|||||||
|
|
||||||
validateAuth(this.$.passwordInput.value, this.$.rememberLogin.checked);
|
validateAuth(this.$.passwordInput.value, this.$.rememberLogin.checked);
|
||||||
},
|
},
|
||||||
|
|
||||||
attached() {
|
|
||||||
// remove the HTML init message
|
|
||||||
const initMsg = document.getElementById('init');
|
|
||||||
initMsg.parentElement.removeChild(initMsg);
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user