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 A6D851763D for ; Thu, 3 Sep 2015 18:01:12 +0000 (UTC) Received: (qmail 38434 invoked by uid 500); 3 Sep 2015 18:01:12 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 38406 invoked by uid 500); 3 Sep 2015 18:01: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 38398 invoked by uid 99); 3 Sep 2015 18:01: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; Thu, 03 Sep 2015 18:01:12 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5A83CE7E9C; Thu, 3 Sep 2015 18:01:12 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pent@apache.org To: commits@flex.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-asjs] [refs/heads/develop] - Set position='relative' on the base List element just like UIBase does for most components. Date: Thu, 3 Sep 2015 18:01:12 +0000 (UTC) Repository: flex-asjs Updated Branches: refs/heads/develop be949cb2f -> b4dd74238 Set position='relative' on the base List element just like UIBase does for most components. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/b4dd7423 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/b4dd7423 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/b4dd7423 Branch: refs/heads/develop Commit: b4dd7423835cab86ec0a04149496e005bc006698 Parents: be949cb Author: Peter Ent Authored: Thu Sep 3 14:01:08 2015 -0400 Committer: Peter Ent Committed: Thu Sep 3 14:01:08 2015 -0400 ---------------------------------------------------------------------- frameworks/projects/Core/js/src/org/apache/flex/core/ListBase.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b4dd7423/frameworks/projects/Core/js/src/org/apache/flex/core/ListBase.js ---------------------------------------------------------------------- diff --git a/frameworks/projects/Core/js/src/org/apache/flex/core/ListBase.js b/frameworks/projects/Core/js/src/org/apache/flex/core/ListBase.js index d28fa7e..234cf30 100644 --- a/frameworks/projects/Core/js/src/org/apache/flex/core/ListBase.js +++ b/frameworks/projects/Core/js/src/org/apache/flex/core/ListBase.js @@ -54,6 +54,7 @@ org.apache.flex.core.ListBase.prototype.createElement = function() { // goog.events.listen(this.element, 'change', // goog.bind(this.changeHandler, this)); this.element = document.createElement('div'); + this.element.style.position = 'relative'; this.element.style.overflow = 'auto'; this.element.style.border = 'solid'; this.element.style.borderWidth = '1px';