You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/12/09 06:17:13 UTC

[26/31] git commit: [flex-asjs] [refs/heads/develop] - these needed more wrapper references

these needed more wrapper references


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

Branch: refs/heads/develop
Commit: 6cb48abf7edbc9bc68b4bb6361c9b0a3e62e6988
Parents: a500760
Author: Alex Harui <ah...@apache.org>
Authored: Mon Dec 8 17:40:44 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Dec 8 21:09:28 2014 -0800

----------------------------------------------------------------------
 frameworks/js/FlexJS/src/org/apache/flex/html/ButtonBar.js    | 2 ++
 frameworks/js/FlexJS/src/org/apache/flex/html/CheckBox.js     | 1 +
 frameworks/js/FlexJS/src/org/apache/flex/html/DropDownList.js | 2 ++
 frameworks/js/FlexJS/src/org/apache/flex/html/RadioButton.js  | 1 +
 4 files changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6cb48abf/frameworks/js/FlexJS/src/org/apache/flex/html/ButtonBar.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/ButtonBar.js b/frameworks/js/FlexJS/src/org/apache/flex/html/ButtonBar.js
index 23e95c2..c7a6aa5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/ButtonBar.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/ButtonBar.js
@@ -81,5 +81,7 @@ org.apache.flex.html.ButtonBar.prototype.createElement =
 
   this.set_className('ButtonBar');
 
+  this.element.flexjs_wrapper = this;
+
   return this.element;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6cb48abf/frameworks/js/FlexJS/src/org/apache/flex/html/CheckBox.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/CheckBox.js b/frameworks/js/FlexJS/src/org/apache/flex/html/CheckBox.js
index ecb44cc..3d7f3bb 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/CheckBox.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/CheckBox.js
@@ -55,6 +55,7 @@ org.apache.flex.html.CheckBox.prototype.createElement =
 
   this.positioner = this.element;
   cb.flexjs_wrapper = this;
+  this.element.flexjs_wrapper = this;
 
   return this.element;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6cb48abf/frameworks/js/FlexJS/src/org/apache/flex/html/DropDownList.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/DropDownList.js b/frameworks/js/FlexJS/src/org/apache/flex/html/DropDownList.js
index 6e92a1b..6ecf321 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/DropDownList.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/DropDownList.js
@@ -52,6 +52,8 @@ org.apache.flex.html.DropDownList.prototype.
       goog.bind(this.changeHandler, this));
   this.positioner = this.element;
 
+  this.element.flexjs_wrapper = this;
+
   return this.element;
 };
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6cb48abf/frameworks/js/FlexJS/src/org/apache/flex/html/RadioButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/RadioButton.js b/frameworks/js/FlexJS/src/org/apache/flex/html/RadioButton.js
index deb7032..98616a1 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/RadioButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/RadioButton.js
@@ -55,6 +55,7 @@ org.apache.flex.html.RadioButton.prototype.createElement =
 
   this.positioner = this.element;
   rb.flexjs_wrapper = this;
+  this.element.flexjs_wrapper = this;
 
   return this.element;
 };