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 {
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
You can’t perform that action at this time.
0 commit comments