This commit is contained in:
Anton Lavrenov 2017-07-27 10:35:59 +02:00
parent d366927519
commit 6a380bb11a
3 changed files with 11 additions and 17 deletions

View File

@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Not released][Not released]
### Fixed
-Fix bug with double trigger wheel in Firefox
## [1.6.3][2017-05-24]
### Fixed

View File

@ -2,7 +2,7 @@
* Konva JavaScript Framework v1.6.4
* http://konvajs.github.io/
* Licensed under the MIT or GPL Version 2 licenses.
* Date: Fri Jul 07 2017
* Date: Thu Jul 27 2017
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - 2017 by Anton Lavrenov (Konva)
@ -9738,8 +9738,6 @@
TAP = 'tap',
DBL_TAP = 'dbltap',
TOUCHMOVE = 'touchmove',
DOMMOUSESCROLL = 'DOMMouseScroll',
MOUSEWHEEL = 'mousewheel',
WHEEL = 'wheel',
CONTENT_MOUSEOUT = 'contentMouseout',
CONTENT_MOUSEOVER = 'contentMouseover',
@ -9771,8 +9769,6 @@
TOUCHMOVE,
TOUCHEND,
MOUSEOVER,
DOMMOUSESCROLL,
MOUSEWHEEL,
WHEEL,
CONTEXTMENU
],
@ -10418,10 +10414,7 @@
}
}
},
_DOMMouseScroll: function(evt) {
this._mousewheel(evt);
},
_mousewheel: function(evt) {
_wheel: function(evt) {
this._setPointerPosition(evt);
var shape = this.getIntersection(this.getPointerPosition());
@ -10430,9 +10423,6 @@
}
this._fire(CONTENT_WHEEL, { evt: evt });
},
_wheel: function(evt) {
this._mousewheel(evt);
},
_setPointerPosition: function(evt) {
var contentPosition = this._getContentPosition(), x = null, y = null;
evt = evt ? evt : window.event;

10
konva.min.js vendored

File diff suppressed because one or more lines are too long