Skip to content

Commit 46fcc0c

Browse files
committed
chore: fix shadowing issues
1 parent 3924ecd commit 46fcc0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/datatip-manager.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export class DataTipManager {
232232
* the central cursor movement event handler
233233
* @param evt the cursor move event
234234
*/
235-
onCursorMoveEvt(evt: CursorPositionChangedEvent) {
235+
onCursorMoveEvt(event: CursorPositionChangedEvent) {
236236
if (this.cursorMoveTimer) {
237237
clearTimeout(this.cursorMoveTimer)
238238
}
@@ -249,14 +249,14 @@ export class DataTipManager {
249249
}
250250
},
251251
this.hoverTime,
252-
evt
252+
event
253253
)
254254
}
255255

256256
/**
257257
* the central mouse movement event handler
258258
*/
259-
onMouseMoveEvt(evt: MouseEvent) {
259+
onMouseMoveEvt(event: MouseEvent) {
260260
if (this.mouseMoveTimer) {
261261
clearTimeout(this.mouseMoveTimer)
262262
}
@@ -293,7 +293,7 @@ export class DataTipManager {
293293
}
294294
},
295295
this.hoverTime,
296-
evt
296+
event
297297
)
298298
}
299299

0 commit comments

Comments
 (0)