mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
fixes
This commit is contained in:
parent
8da2815590
commit
2ee0cc2528
26
konva.js
26
konva.js
@ -18482,6 +18482,8 @@
|
||||
window.addEventListener('touchmove', this.handleMouseMove);
|
||||
window.addEventListener('mouseup', this.handleMouseUp);
|
||||
window.addEventListener('touchend', this.handleMouseUp);
|
||||
|
||||
this._transforming = true;
|
||||
},
|
||||
|
||||
handleMouseMove: function(e) {
|
||||
@ -18642,12 +18644,19 @@
|
||||
},
|
||||
|
||||
handleMouseUp: function() {
|
||||
this.fire('transformend');
|
||||
this._el.fire('transformend');
|
||||
window.removeEventListener('mousemove', this.handleMouseMove);
|
||||
window.removeEventListener('touchmove', this.handleMouseMove);
|
||||
window.removeEventListener('mouseup', this.handleMouseUp);
|
||||
window.removeEventListener('touchend', this.handleMouseUp);
|
||||
this._removeEvents();
|
||||
},
|
||||
|
||||
_removeEvents: function() {
|
||||
if (this._transforming) {
|
||||
this.fire('transformend');
|
||||
this._el.fire('transformend');
|
||||
window.removeEventListener('mousemove', this.handleMouseMove);
|
||||
window.removeEventListener('touchmove', this.handleMouseMove);
|
||||
window.removeEventListener('mouseup', this.handleMouseUp);
|
||||
window.removeEventListener('touchend', this.handleMouseUp);
|
||||
}
|
||||
this._transforming = false;
|
||||
},
|
||||
|
||||
_getAttrs: function() {
|
||||
@ -18771,10 +18780,7 @@
|
||||
destroy: function() {
|
||||
Konva.Group.prototype.destroy.call(this);
|
||||
this._el.off('.resizer');
|
||||
window.removeEventListener('mousemove', this.handleMouseMove);
|
||||
window.removeEventListener('touchmove', this.handleMouseMove);
|
||||
window.removeEventListener('mouseup', this.handleMouseUp);
|
||||
window.removeEventListener('touchend', this.handleMouseUp);
|
||||
this._removeEvents();
|
||||
}
|
||||
};
|
||||
Konva.Util.extend(Konva.Transformer, Konva.Group);
|
||||
|
4
konva.min.js
vendored
4
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -151,6 +151,8 @@
|
||||
window.addEventListener('touchmove', this.handleMouseMove);
|
||||
window.addEventListener('mouseup', this.handleMouseUp);
|
||||
window.addEventListener('touchend', this.handleMouseUp);
|
||||
|
||||
this._transforming = true;
|
||||
},
|
||||
|
||||
handleMouseMove: function(e) {
|
||||
@ -311,12 +313,19 @@
|
||||
},
|
||||
|
||||
handleMouseUp: function() {
|
||||
this.fire('transformend');
|
||||
this._el.fire('transformend');
|
||||
window.removeEventListener('mousemove', this.handleMouseMove);
|
||||
window.removeEventListener('touchmove', this.handleMouseMove);
|
||||
window.removeEventListener('mouseup', this.handleMouseUp);
|
||||
window.removeEventListener('touchend', this.handleMouseUp);
|
||||
this._removeEvents();
|
||||
},
|
||||
|
||||
_removeEvents: function() {
|
||||
if (this._transforming) {
|
||||
this.fire('transformend');
|
||||
this._el.fire('transformend');
|
||||
window.removeEventListener('mousemove', this.handleMouseMove);
|
||||
window.removeEventListener('touchmove', this.handleMouseMove);
|
||||
window.removeEventListener('mouseup', this.handleMouseUp);
|
||||
window.removeEventListener('touchend', this.handleMouseUp);
|
||||
}
|
||||
this._transforming = false;
|
||||
},
|
||||
|
||||
_getAttrs: function() {
|
||||
@ -440,10 +449,7 @@
|
||||
destroy: function() {
|
||||
Konva.Group.prototype.destroy.call(this);
|
||||
this._el.off('.resizer');
|
||||
window.removeEventListener('mousemove', this.handleMouseMove);
|
||||
window.removeEventListener('touchmove', this.handleMouseMove);
|
||||
window.removeEventListener('mouseup', this.handleMouseUp);
|
||||
window.removeEventListener('touchend', this.handleMouseUp);
|
||||
this._removeEvents();
|
||||
}
|
||||
};
|
||||
Konva.Util.extend(Konva.Transformer, Konva.Group);
|
||||
|
Loading…
Reference in New Issue
Block a user