File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ export class DataTipManager {
232
232
* the central cursor movement event handler
233
233
* @param evt the cursor move event
234
234
*/
235
- onCursorMoveEvt ( evt : CursorPositionChangedEvent ) {
235
+ onCursorMoveEvt ( event : CursorPositionChangedEvent ) {
236
236
if ( this . cursorMoveTimer ) {
237
237
clearTimeout ( this . cursorMoveTimer )
238
238
}
@@ -249,14 +249,14 @@ export class DataTipManager {
249
249
}
250
250
} ,
251
251
this . hoverTime ,
252
- evt
252
+ event
253
253
)
254
254
}
255
255
256
256
/**
257
257
* the central mouse movement event handler
258
258
*/
259
- onMouseMoveEvt ( evt : MouseEvent ) {
259
+ onMouseMoveEvt ( event : MouseEvent ) {
260
260
if ( this . mouseMoveTimer ) {
261
261
clearTimeout ( this . mouseMoveTimer )
262
262
}
@@ -293,7 +293,7 @@ export class DataTipManager {
293
293
}
294
294
} ,
295
295
this . hoverTime ,
296
- evt
296
+ event
297
297
)
298
298
}
299
299
You can’t perform that action at this time.
0 commit comments