fix toObject for extended attrs. close #86

This commit is contained in:
lavrton 2015-08-28 11:36:38 +07:00
parent 1872fd68da
commit ff6a2bf0cc
3 changed files with 15 additions and 0 deletions

View File

@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Correct calculation in `getClientRect` method of `Konva.Line` and `Konva.Container`.
- Correct `toObject()` behaviour for node with attrs with extended native prototypes
### Changed
- Dragging now works much better. If your pointer is out of stage content dragging will still continue.

View File

@ -530,6 +530,9 @@
key;
for(key in obj) {
if (!obj.hasOwnProperty(key)) {
continue;
}
if(this._isFunction(obj[key])) {
names.push(key);
}

View File

@ -3015,4 +3015,15 @@ suite('Node', function() {
};
imageObj.src = 'assets/darth-vader.jpg';
});
test('toObject with extended prototypes', function() {
var node = new Konva.Circle({
id: 'foo',
radius: 10
});
Number.prototype.customFunc = function() {};
console.dir(node.toObject());
assert.equal(node.toObject().attrs.radius, 10);
delete Number.prototype.customFunc;
});
});