This website requires JavaScript.
Explore
Help
Register
Sign In
lsm
/
konva
Watch
1
Star
0
Fork
0
You've already forked konva
mirror of
https://github.com/konvajs/konva.git
synced
2026-01-23 21:34:50 +08:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
Files
79a46edad7754fdde72082df406cd6806279bc3c
konva
/
tests
/
js
/
unit
History
Eric Rowell
79a46edad7
removed point specific logic from the Transition class. To run transitions, you can now only transition properties which are numbers only. This means that if you want to transition a point, such as offset, you can transition the offset property with a number which will transition both x and y, or you can transition offsetX or offsetY individually
2013-04-29 10:16:23 -07:00
..
plugins
after some more thought, I've decided to remove the Plugins namespace, but keep the plugins directory. I don't want 3rd parties putting some things in the Kinetic namespace, while others put things in the Plugin space. I really don't see a real need for the namespacing. For organizational purposes, the plugins directory still makes sense, however.
2013-03-24 20:42:27 -07:00
shapes
fixed
#363
2013-04-04 22:45:39 -07:00
animationTests.js
Kinetic.Animation constructor now just requires a function and optional node. No more config object
2012-11-15 21:30:58 -08:00
containerTests.js
removed apply() Collection method. Added new mapMethods() Collection method, which is used internally to map node methods to collection methods
2013-03-25 22:43:35 -07:00
ddTests.js
first pass at removing setDefaultAttrs logic to speed up node instantation performance
2013-03-15 08:33:05 -07:00
globalTests.js
wrapped all modules with anonymous func. moved Canvas to root dir because it's now coupled to KineticJS logic. removed whitelisting arrays from Global. Did some prep work for AMD and Node support
2012-12-01 12:04:10 -08:00
layerTests.js
toDataURL and toImage now work correctly on devices with a pixel ratio != 1
2013-04-14 09:41:59 -07:00
nodeTests.js
all attrs that have x and y components now have individual component setters. i.e. you can use setScale() and pass in an object, or setScaleX() and setScaleY() individually
2013-04-27 20:50:42 -07:00
shapeTests.js
fixes
#353
2013-04-04 23:17:20 -07:00
stageTests.js
extended getIntersection method for Layer to improve flexibility. Replaced instances of Math.round to bitwise round via | 0 for a small performance gain
2013-04-11 23:51:21 -07:00
transitionTests.js
removed point specific logic from the Transition class. To run transitions, you can now only transition properties which are numbers only. This means that if you want to transition a point, such as offset, you can transition the offset property with a number which will transition both x and y, or you can transition offsetX or offsetY individually
2013-04-29 10:16:23 -07:00