clean: remove useless wait for webComponentReady

This commit is contained in:
jblemee 2019-01-08 11:14:15 +01:00
parent b5e962e865
commit f2781220df
1 changed files with 8 additions and 11 deletions

View File

@ -128,8 +128,6 @@ class HDAppLinkMore extends SIBWidget {
}
}
document.addEventListener('WebComponentsReady', function(event) {
customElements.define('hdapp-userinfo', HDAppUserInfo);
customElements.define('hdapp-mail', HDAppMail);
customElements.define('hdapp-member', HDAppMember);
@ -138,4 +136,3 @@ document.addEventListener('WebComponentsReady', function(event) {
customElements.define('hdapp-available', HDAppAvailable);
customElements.define('hdapp-hyperlink', HDAppHyperlink);
customElements.define('hdapp-link-more', HDAppLinkMore);
});