contentTap event for stage. fix #122.

This commit is contained in:
Anton Lavrenov 2016-01-16 07:11:30 +08:00
parent ed6a3a956b
commit d9451f854e
4 changed files with 12 additions and 7 deletions

View File

@ -8,6 +8,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- correct `Konva.Arrow` drawing. Now it works better.
- Better support for dragging when mouse out of stage
- Better corner radius for `Label` shape
- `contentTap` event for stage
### Added
- event delegation. You can use it in this way: `layer.on('click', 'Circle', handler);`

View File

@ -3,7 +3,7 @@
* Konva JavaScript Framework v0.11.0
* http://konvajs.github.io/
* Licensed under the MIT or GPL Version 2 licenses.
* Date: Thu Jan 07 2016
* Date: Sat Jan 16 2016
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - 2015 by Anton Lavrenov (Konva)
@ -8576,6 +8576,7 @@
CONTENT_TOUCHSTART = 'contentTouchstart',
CONTENT_TOUCHEND = 'contentTouchend',
CONTENT_DBL_TAP = 'contentDbltap',
CONTENT_TAP = 'contentTap',
CONTENT_TOUCHMOVE = 'contentTouchmove',
DIV = 'div',
@ -9155,8 +9156,9 @@
}
}
// content events
this._fire(CONTENT_TOUCHEND, {evt: evt});
if (Konva.listenClickTap) {
this._fire(CONTENT_TOUCHEND, {evt: evt});
this._fire(CONTENT_TAP, {evt: evt});
if(fireDblClick) {
this._fire(CONTENT_DBL_TAP, {evt: evt});
}

8
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -33,6 +33,7 @@
CONTENT_TOUCHSTART = 'contentTouchstart',
CONTENT_TOUCHEND = 'contentTouchend',
CONTENT_DBL_TAP = 'contentDbltap',
CONTENT_TAP = 'contentTap',
CONTENT_TOUCHMOVE = 'contentTouchmove',
DIV = 'div',
@ -593,8 +594,9 @@
}
}
// content events
this._fire(CONTENT_TOUCHEND, {evt: evt});
if (Konva.listenClickTap) {
this._fire(CONTENT_TOUCHEND, {evt: evt});
this._fire(CONTENT_TAP, {evt: evt});
if(fireDblClick) {
this._fire(CONTENT_DBL_TAP, {evt: evt});
}