mirror of
https://github.com/konvajs/konva.git
synced 2026-03-03 16:58:33 +08:00
using getter overloader for toObject() method
This commit is contained in:
@@ -970,7 +970,7 @@
|
|||||||
for(key in attrs) {
|
for(key in attrs) {
|
||||||
val = attrs[key];
|
val = attrs[key];
|
||||||
if (!type._isFunction(val) && !type._isElement(val) && !(type._isObject(val) && type._hasMethods(val))) {
|
if (!type._isFunction(val) && !type._isElement(val) && !(type._isObject(val) && type._hasMethods(val))) {
|
||||||
getter = this[GET + Kinetic.Util._capitalize(key)];
|
getter = this[key];
|
||||||
// remove attr value so that we can extract the default value from the getter
|
// remove attr value so that we can extract the default value from the getter
|
||||||
delete attrs[key];
|
delete attrs[key];
|
||||||
defaultValue = getter ? getter.call(this) : null;
|
defaultValue = getter ? getter.call(this) : null;
|
||||||
|
|||||||
Reference in New Issue
Block a user