Skip to content

Commit 01fed31

Browse files
committed
update readme
1 parent 63827a7 commit 01fed31

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

README.md

+15-4
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ new ElementInspector({
1919

2020
### `targetSelector`
2121

22-
The target element to enable inspector. Required.
22+
The target element to enable inspector. `document` element is used if not specified.
2323

2424
### `onMousemove`
2525

2626
Callback function of mousemove event. The argument of callback is event object.
2727

28-
### `onOverlayClicked`
28+
### `onClick`
2929

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.
3131

3232
### `overlayBackgroundColor`
3333

@@ -43,8 +43,19 @@ Show overlay.
4343

4444
Hide overlay.
4545

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+
4657
## Test
4758

4859
```
4960
npm test
50-
```
61+
```

0 commit comments

Comments
 (0)