Notify target object after transform functions change

This commit is contained in:
Frederic Junod
2013-11-04 12:22:19 +01:00
parent a0bea641d1
commit c18b2706fb

View File

@@ -63,6 +63,8 @@ ol.ObjectAccessor = function(target, key) {
ol.ObjectAccessor.prototype.transform = function(from, to) {
this.from = from;
this.to = to;
this.target.notify(this.key);
};