This commit is contained in:
Tobias Baunbaek
2024-01-30 15:31:29 +01:00
parent 43422c62f7
commit ed6bc7ea81

View File

@@ -9,7 +9,6 @@ customElements.define('developer-tooling', class extends HTMLElement {
constructor () {
super()
console.log('[developer-tooling] constructor')
this.template = document.createElement('template')
this.template.innerHTML = `
<div>
@@ -224,12 +223,10 @@ customElements.define('developer-tooling', class extends HTMLElement {
}
load () {
console.log('load', this.style)
this.style.display = ''
}
unload () {
console.log('unload', this.style)
this.style.display = 'none'
}
})