mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
build for 1.6.6
This commit is contained in:
parent
7c34ec7e89
commit
00a0372ab7
12
konva.js
12
konva.js
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Konva JavaScript Framework v1.6.5
|
||||
* Konva JavaScript Framework v1.6.6
|
||||
* http://konvajs.github.io/
|
||||
* Licensed under the MIT or GPL Version 2 licenses.
|
||||
* Date: Fri Jul 28 2017
|
||||
@ -38,7 +38,7 @@
|
||||
|
||||
var Konva = {
|
||||
// public
|
||||
version: '1.6.5',
|
||||
version: '1.6.6',
|
||||
|
||||
// private
|
||||
stages: [],
|
||||
@ -10283,6 +10283,7 @@
|
||||
this._setPointerPosition(evt);
|
||||
var shape = this.getIntersection(this.getPointerPosition()),
|
||||
clickStartShape = this.clickStartShape,
|
||||
clickEndShape = this.clickEndShape,
|
||||
fireDblClick = false,
|
||||
dd = Konva.DD;
|
||||
|
||||
@ -10301,6 +10302,7 @@
|
||||
}, Konva.dblClickWindow);
|
||||
|
||||
if (shape && shape.isListening()) {
|
||||
this.clickEndShape = shape;
|
||||
shape._fireAndBubble(MOUSEUP, { evt: evt });
|
||||
|
||||
// detect if click or double click occurred
|
||||
@ -10311,7 +10313,11 @@
|
||||
) {
|
||||
shape._fireAndBubble(CLICK, { evt: evt });
|
||||
|
||||
if (fireDblClick) {
|
||||
if (
|
||||
fireDblClick &&
|
||||
clickEndShape &&
|
||||
clickEndShape._id === shape._id
|
||||
) {
|
||||
shape._fireAndBubble(DBL_CLICK, { evt: evt });
|
||||
}
|
||||
}
|
||||
|
12
konva.min.js
vendored
12
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "konva",
|
||||
"version": "1.6.5",
|
||||
"version": "1.6.6",
|
||||
"author": "Anton Lavrenov",
|
||||
"files": [
|
||||
"README.md",
|
||||
|
Loading…
Reference in New Issue
Block a user