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