Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 199841757F for ; Wed, 8 Apr 2015 23:05:25 +0000 (UTC) Received: (qmail 74386 invoked by uid 500); 8 Apr 2015 23:05:21 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 74342 invoked by uid 500); 8 Apr 2015 23:05:21 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 73240 invoked by uid 99); 8 Apr 2015 23:05:21 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Apr 2015 23:05:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DC7F9E2F38; Wed, 8 Apr 2015 23:05:20 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aharui@apache.org To: commits@flex.apache.org Date: Wed, 08 Apr 2015 23:05:48 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [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 Authored: Fri Apr 3 16:06:14 2015 -0700 Committer: Alex Harui 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);