Lines Matching refs:addListener

1710       addListener, removeListener;  variable
1714 addListener = function (element, eventName, handler) { function
1725 addListener = function (element, eventName, handler) {
1755 addListener = function (element, eventName, handler) {
1792 fabric.util.addListener = addListener;
9127 addListener = fabric.util.addListener, variable
9155 addListener(fabric.window, 'resize', this._onResize);
9158 addListener(this.upperCanvasEl, 'mousedown', this._onMouseDown);
9159 addListener(this.upperCanvasEl, 'mousemove', this._onMouseMove);
9160 addListener(this.upperCanvasEl, 'mousewheel', this._onMouseWheel);
9163 addListener(this.upperCanvasEl, 'touchstart', this._onMouseDown);
9164 addListener(this.upperCanvasEl, 'touchmove', this._onMouseMove);
9273 addListener(fabric.document, 'touchend', this._onMouseUp);
9274 addListener(fabric.document, 'touchmove', this._onMouseMove);
9284 addListener(fabric.document, 'mouseup', this._onMouseUp);
9285 addListener(fabric.document, 'mousemove', this._onMouseMove);
9302 addListener(this.upperCanvasEl, 'mousemove', this._onMouseMove);
9303 addListener(this.upperCanvasEl, 'touchmove', this._onMouseMove);
9310 addListener(_this.upperCanvasEl, 'mousedown', _this._onMouseDown);
22518 fabric.util.addListener(this.hiddenTextarea, 'keydown', this.onKeyDown.bind(this));
22519 fabric.util.addListener(this.hiddenTextarea, 'keypress', this.onKeyPress.bind(this));
22520 fabric.util.addListener(this.hiddenTextarea, 'copy', this.copy.bind(this));
22521 fabric.util.addListener(this.hiddenTextarea, 'paste', this.paste.bind(this));
22524 fabric.util.addListener(this.canvas.upperCanvasEl, 'click', this.onClick.bind(this));