UNPKG

fabric-pure-browser

Version:

Fabric.js package with no node-specific dependencies (node-canvas, jsdom). The project is published once a day (in case if a new version appears) from 'master' branch of https://github.com/fabricjs/fabric.js repository. You can keep original imports in

51 lines (46 loc) 1.58 kB
(function () { // since ie10 can use addEventListener but they do not support options, i need to check var couldUseAttachEvent = !!fabric.document.createElement('div').attachEvent, touchEvents = ['touchstart', 'touchmove', 'touchend']; /** * Adds an event listener to an element * @function * @memberOf fabric.util * @param {HTMLElement} element * @param {String} eventName * @param {Function} handler */ fabric.util.addListener = function(element, eventName, handler, options) { element && element.addEventListener(eventName, handler, couldUseAttachEvent ? false : options); }; /** * Removes an event listener from an element * @function * @memberOf fabric.util * @param {HTMLElement} element * @param {String} eventName * @param {Function} handler */ fabric.util.removeListener = function(element, eventName, handler, options) { element && element.removeEventListener(eventName, handler, couldUseAttachEvent ? false : options); }; function getTouchInfo(event) { var touchProp = event.changedTouches; if (touchProp && touchProp[0]) { return touchProp[0]; } return event; } fabric.util.getPointer = function(event) { var element = event.target, scroll = fabric.util.getScrollLeftTop(element), _evt = getTouchInfo(event); return { x: _evt.clientX + scroll.left, y: _evt.clientY + scroll.top }; }; fabric.util.isTouchEvent = function(event) { return touchEvents.indexOf(event.type) > -1 || event.pointerType === 'touch'; }; })();