You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/05/04 20:19:46 UTC

[4/9] git commit: [flex-asjs] [refs/heads/develop] - [FlexJS] minor git hickup?

[FlexJS] minor git hickup?

This file shows a 'new', while it's been in the repo for ages...

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/26e97b2d
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/26e97b2d
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/26e97b2d

Branch: refs/heads/develop
Commit: 26e97b2d914b1beb51edd08ef8a19999b287a9fa
Parents: b7b74f5
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Wed Apr 24 20:48:57 2013 +0200
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Wed Apr 24 20:48:57 2013 +0200

----------------------------------------------------------------------
 .../js/FlexJS/src/org/apache/flex/core/UIBase.js   |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/26e97b2d/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
index aaad59a..1a77aef 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
@@ -134,6 +134,7 @@ org.apache.flex.core.UIBase.prototype.get_className = function() {
     return this.className;
 };
 
+
 /**
  * @expose
  * @this {org.apache.flex.core.UIBase}
@@ -144,11 +145,11 @@ org.apache.flex.core.UIBase.prototype.set_className = function(value) {
     {
         this.element.className = value;
         this.className = value;
-        var evt = this.createEvent('classNameChanged');
-        this.dispatchEvent(evt);
+        this.dispatchEvent('classNameChanged');
     }
 };
 
+
 /**
  * @expose
  * @type {object}