updated FunctionController.onFire to be after .fire

This commit is contained in:
Jono Brandel 2011-02-11 10:46:40 -08:00
parent d3cc444cad
commit 01156d5513

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);
}; };
}; };