UNPKG
eruda2
Version:
latest (0.0.2-b8)
0.0.2
0.0.2-b8
0.0.2-b7
0.0.2-b6
0.0.2-b5
0.0.2-b4
0.0.2-b3
0.0.2-b1
0.0.1
Console for Mobile Browsers
eruda.liriliri.io
liriliri/eruda
eruda2
/
src
/
DevTools
/
Tool.js
21 lines
(17 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
() }, })