Make onFinishChange after getValue

This commit is contained in:
Jono Brandel 2014-06-08 17:58:47 -07:00
parent f36a8273a1
commit 586c0607b5

View File

@ -60,10 +60,10 @@ define([
if (this.__onChange) { if (this.__onChange) {
this.__onChange.call(this); this.__onChange.call(this);
} }
this.getValue().call(this.object);
if (this.__onFinishChange) { if (this.__onFinishChange) {
this.__onFinishChange.call(this, this.getValue()); this.__onFinishChange.call(this, this.getValue());
} }
this.getValue().call(this.object);
} }
} }