eruda3 / src /DevTools /Tool.js
soiz1's picture
Migrated from GitHub
271613e verified
raw
history blame contribute delete
248 Bytes
import Class from 'licia/Class'
export default Class({
init($el) {
this._$el = $el
},
show() {
this._$el.show()
return this
},
hide() {
this._$el.hide()
return this
},
destroy() {
this._$el.remove()
},
})