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 682521729E for ; Fri, 23 Jan 2015 22:22:15 +0000 (UTC) Received: (qmail 48754 invoked by uid 500); 23 Jan 2015 22:22:15 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 48728 invoked by uid 500); 23 Jan 2015 22:22:15 -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 48720 invoked by uid 99); 23 Jan 2015 22:22:15 -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; Fri, 23 Jan 2015 22:22:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5FA6BE03AB; Fri, 23 Jan 2015 22:22:15 +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: Fri, 23 Jan 2015 22:22:15 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/3] git commit: [flex-asjs] [refs/heads/develop] - fix bug Repository: flex-asjs Updated Branches: refs/heads/develop 4e8d6b6a6 -> e1f17c928 fix bug Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/ebad8a58 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/ebad8a58 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/ebad8a58 Branch: refs/heads/develop Commit: ebad8a58d7796d23cfdfeaeb15357d59f1fc1778 Parents: 4e8d6b6 Author: Alex Harui Authored: Fri Jan 23 14:20:37 2015 -0800 Committer: Alex Harui Committed: Fri Jan 23 14:20:37 2015 -0800 ---------------------------------------------------------------------- frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/ebad8a58/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 32ca412..04f5063 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js @@ -224,7 +224,7 @@ org.apache.flex.core.UIBase.prototype.get_numElements = function() { * @return {Object} The parent of this object. */ org.apache.flex.core.UIBase.prototype.get_parent = function() { - var p = this.parent.parentNode; + var p = this.positioner.parentNode; var wrapper = p.flexjs_wrapper; return wrapper; };