Update group.class.js

This commit is contained in:
Andrea Bogazzi 2014-11-30 18:38:43 +01:00
parent 2fbebb03cc
commit 4314d30370

View file

@ -69,9 +69,7 @@
this._calcBounds();
this._updateObjectsCoords();
if (options) {
extend(this, options);
}
this.callSuper('initialize', options);
this.setCoords();
this.saveCoords();
@ -199,14 +197,11 @@
_set: function(key, value) {
if (key in this.delegatedProperties) {
var i = this._objects.length;
this[key] = value;
while (i--) {
this._objects[i].set(key, value);
}
}
else {
this[key] = value;
}
this.callSuper('_set', key, value);
},
/**