This commit is contained in:
lavrton 2015-01-21 10:31:32 +07:00
parent 6ebd9fc554
commit 852694fff0
3 changed files with 9 additions and 6 deletions

View File

@ -7,6 +7,7 @@
* Enhancements
* `black` is default fill for text
* true class extending. Now `rect instanceOf Kinetic.Shape` will return true
* while dragging you can redraw layer that is not under drag. hit graph will be updated in this case
## 5.1.9 2014-01-09

View File

@ -3,7 +3,7 @@
* KineticJS JavaScript Framework v5.1.10
* http://lavrton.github.io/KineticJS/
* Licensed under the MIT or GPL Version 2 licenses.
* Date: 2015-01-20
* Date: 2015-01-21
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell
* Modified work Copyright 2015 Anton Lavrenov
@ -2901,7 +2901,7 @@ var Kinetic = {};
shouldDrawHit: function(canvas) {
var layer = this.getLayer();
return (canvas && canvas.isCache) || (layer && layer.hitGraphEnabled())
&& this.isListening() && this.isVisible() && !Kinetic.isDragging();
&& this.isListening() && this.isVisible();
},
/**
* show node
@ -7649,8 +7649,10 @@ var Kinetic = {};
},
shouldDrawHit: function(canvas) {
var layer = this.getLayer();
var dd = Kinetic.DD;
var layerUnderDrag = dd && Kinetic.isDragging() && (Kinetic.DD.anim.getLayers().indexOf(layer) !== -1);
return (canvas && canvas.isCache) || (layer && layer.hitGraphEnabled())
&& this.isVisible() && !Kinetic.isDragging();
&& this.isVisible() && !layerUnderDrag;
}
});

6
kinetic.min.js vendored

File diff suppressed because one or more lines are too long