From 01156d55134fd67720dd21ad532bfafe79feacdb Mon Sep 17 00:00:00 2001 From: Jono Brandel Date: Fri, 11 Feb 2011 10:46:40 -0800 Subject: [PATCH] updated FunctionController.onFire to be after .fire --- controllers/controller.function.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/controller.function.js b/controllers/controller.function.js index ee0b831..94e5427 100644 --- a/controllers/controller.function.js +++ b/controllers/controller.function.js @@ -20,10 +20,10 @@ GUI.FunctionController = function() { } this.fire = function() { + _this.object[_this.propertyName].call(_this.object); if (fireFunction != null) { fireFunction.call(this); } - _this.object[_this.propertyName].call(_this.object); }; };