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 2015/04/09 01:05:48 UTC

[29/47] git commit: [flex-asjs] [refs/heads/develop] - need to set model after supercall otherwise GCL complains

need to set model after supercall otherwise GCL complains


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

Branch: refs/heads/develop
Commit: e44cc21232f78f65f4edc7c92c0ef4d7ffcbc647
Parents: 49a546f
Author: Alex Harui <ah...@apache.org>
Authored: Fri Apr 3 16:06:14 2015 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Apr 3 16:06:14 2015 -0700

----------------------------------------------------------------------
 frameworks/js/FlexJS/src/org/apache/flex/html/NumericStepper.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/e44cc212/frameworks/js/FlexJS/src/org/apache/flex/html/NumericStepper.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/NumericStepper.js b/frameworks/js/FlexJS/src/org/apache/flex/html/NumericStepper.js
index 308a4bd..846d0db 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/NumericStepper.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/NumericStepper.js
@@ -26,9 +26,9 @@ goog.require('org_apache_flex_html_beads_models_RangeModel');
  * @extends {org_apache_flex_core_UIBase}
  */
 org_apache_flex_html_NumericStepper = function() {
+  org_apache_flex_html_NumericStepper.base(this, 'constructor');
   this.model =
       new org_apache_flex_html_beads_models_RangeModel();
-  org_apache_flex_html_NumericStepper.base(this, 'constructor');
 };
 goog.inherits(org_apache_flex_html_NumericStepper,
     org_apache_flex_core_UIBase);