UNPKG

eruda2

Version:

Console for Mobile Browsers

21 lines (17 loc) 252 B
import { Class } from '../lib/util' export default Class({ init($el) { this._$el = $el }, show() { this._$el.show() return this }, hide() { this._$el.hide() return this }, destroy() { this._$el.remove() }, })