diff --git a/core/util/events.js b/core/util/events.js index c1afb48..8efd0c2 100644 --- a/core/util/events.js +++ b/core/util/events.js @@ -10,8 +10,6 @@ * Cross-browser event and position routines */ -import * as Log from './logging.js'; - export function getPointerEvent (e) { return e.changedTouches ? e.changedTouches[0] : e.touches ? e.touches[0] : e; };