updated FunctionController.onFire to be after .fire

This commit is contained in:
Jono Brandel 2011-02-11 10:46:40 -08:00
parent d24b0c74fc
commit 89c387c72b

View File

@ -20,10 +20,10 @@ GUI.FunctionController = function() {
} }
this.fire = function() { this.fire = function() {
_this.object[_this.propertyName].call(_this.object);
if (fireFunction != null) { if (fireFunction != null) {
fireFunction.call(this); fireFunction.call(this);
} }
_this.object[_this.propertyName].call(_this.object);
}; };
}; };