File tree 1 file changed +15
-4
lines changed
1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ new ElementInspector({
19
19
20
20
### ` targetSelector `
21
21
22
- The target element to enable inspector. Required .
22
+ The target element to enable inspector. ` document ` element is used if not specified .
23
23
24
24
### ` onMousemove `
25
25
26
26
Callback function of mousemove event. The argument of callback is event object.
27
27
28
- ### ` onOverlayClicked `
28
+ ### ` onClick `
29
29
30
- Callback function of click event of overlay element, which indicates the dom of current mouse position . The argument of callback is event object.
30
+ Callback function of click event of targetSelector element. The argument of callback is event object.
31
31
32
32
### ` overlayBackgroundColor `
33
33
@@ -43,8 +43,19 @@ Show overlay.
43
43
44
44
Hide overlay.
45
45
46
+ ## Properties
47
+
48
+ ### ` currentTarget `
49
+
50
+ The dom node which mouse cursor points currently.
51
+
52
+ ### ` clicked `
53
+
54
+ The flag indicates the target elements are clicked or not.
55
+ For instance, if ` clicked ` is false on ` onClick ` event handler, this may indicate that the user selects the node.
56
+
46
57
## Test
47
58
48
59
```
49
60
npm test
50
- ```
61
+ ```
You can’t perform that action at this time.
0 commit comments