mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
contentTap
event for stage. fix #122.
This commit is contained in:
parent
ed6a3a956b
commit
d9451f854e
@ -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);`
|
||||
|
6
konva.js
6
konva.js
@ -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
8
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -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});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user