Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 19103200D16 for ; Mon, 4 Sep 2017 18:27:14 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 17CD71652CA; Mon, 4 Sep 2017 16:27:14 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 51BA71652CB for ; Mon, 4 Sep 2017 18:27:13 +0200 (CEST) Received: (qmail 97530 invoked by uid 500); 4 Sep 2017 16:27:12 -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 97447 invoked by uid 99); 4 Sep 2017 16:27:12 -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; Mon, 04 Sep 2017 16:27:12 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0FD8FF5632; Mon, 4 Sep 2017 16:27:12 +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: Mon, 04 Sep 2017 16:27:14 -0000 Message-Id: <959a71236ebd4c6f9b60f712b9c52c83@git.apache.org> In-Reply-To: <0b0f450a0aff482985779e24697bc406@git.apache.org> References: <0b0f450a0aff482985779e24697bc406@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/3] git commit: [flex-asjs] [refs/heads/feature/amf] - didn't get its flexjs_wrapper set. SimpleList seems to be extending List which doesn't seem right to me though archived-at: Mon, 04 Sep 2017 16:27:14 -0000 didn't get its flexjs_wrapper set. SimpleList seems to be extending List which doesn't seem right to me though Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/f3dd4614 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/f3dd4614 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/f3dd4614 Branch: refs/heads/feature/amf Commit: f3dd4614f65fd0816f75c960b00151ea34b58272 Parents: 8e1b694 Author: Alex Harui Authored: Mon Sep 4 09:26:03 2017 -0700 Committer: Alex Harui Committed: Mon Sep 4 09:27:07 2017 -0700 ---------------------------------------------------------------------- .../projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/f3dd4614/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as index 0d254e5..b71b7cd 100644 --- a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as +++ b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as @@ -58,6 +58,7 @@ package org.apache.flex.html override protected function createElement():WrappedHTMLElement { element = document.createElement('select') as WrappedHTMLElement; + element.flexjs_wrapper = this; (element as HTMLSelectElement).size = 5; goog.events.listen(element, 'change', changeHandler);