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 2E184200C67 for ; Mon, 1 May 2017 05:13:14 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2D0BD160BA4; Mon, 1 May 2017 03:13: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 643CA160BB5 for ; Mon, 1 May 2017 05:13:13 +0200 (CEST) Received: (qmail 2205 invoked by uid 500); 1 May 2017 03:13:07 -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 1855 invoked by uid 99); 1 May 2017 03:13:07 -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, 01 May 2017 03:13:07 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 301CFDFF66; Mon, 1 May 2017 03:13:07 +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, 01 May 2017 03:13:12 -0000 Message-Id: In-Reply-To: <56af4de1927947e1aab42fb13ddce3ac@git.apache.org> References: <56af4de1927947e1aab42fb13ddce3ac@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [6/7] git commit: [flex-asjs] [refs/heads/dual] - Explicitly set position to absolute to fix slider button not moving archived-at: Mon, 01 May 2017 03:13:14 -0000 Explicitly set position to absolute to fix slider button not moving Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/fd709d13 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/fd709d13 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/fd709d13 Branch: refs/heads/dual Commit: fd709d137e5f740fd3a7f7dfbcde0e898e25f103 Parents: c6b4f8a Author: DESKTOP-RH4S838\Yishay Authored: Fri Apr 28 06:46:32 2017 +0300 Committer: DESKTOP-RH4S838\Yishay Committed: Fri Apr 28 06:46:32 2017 +0300 ---------------------------------------------------------------------- frameworks/projects/Core/.actionScriptProperties | 1 + frameworks/projects/Graphics/.actionScriptProperties | 1 + frameworks/projects/HTML/.actionScriptProperties | 1 + .../HTML/src/main/flex/org/apache/flex/html/beads/SliderView.as | 4 ++++ 4 files changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/fd709d13/frameworks/projects/Core/.actionScriptProperties ---------------------------------------------------------------------- diff --git a/frameworks/projects/Core/.actionScriptProperties b/frameworks/projects/Core/.actionScriptProperties index b29cfae..0a9a092 100644 --- a/frameworks/projects/Core/.actionScriptProperties +++ b/frameworks/projects/Core/.actionScriptProperties @@ -55,3 +55,4 @@ limitations under the License. + http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/fd709d13/frameworks/projects/Graphics/.actionScriptProperties ---------------------------------------------------------------------- diff --git a/frameworks/projects/Graphics/.actionScriptProperties b/frameworks/projects/Graphics/.actionScriptProperties index 355befe..c93a464 100644 --- a/frameworks/projects/Graphics/.actionScriptProperties +++ b/frameworks/projects/Graphics/.actionScriptProperties @@ -36,3 +36,4 @@ limitations under the License. + http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/fd709d13/frameworks/projects/HTML/.actionScriptProperties ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/.actionScriptProperties b/frameworks/projects/HTML/.actionScriptProperties index f491247..1897941 100644 --- a/frameworks/projects/HTML/.actionScriptProperties +++ b/frameworks/projects/HTML/.actionScriptProperties @@ -39,3 +39,4 @@ limitations under the License. + http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/fd709d13/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/SliderView.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/SliderView.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/SliderView.as index ea31cf9..009fb8c 100644 --- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/SliderView.as +++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/SliderView.as @@ -184,6 +184,10 @@ package org.apache.flex.html.beads { var p:Number = (value-rangeModel.minimum)/(rangeModel.maximum-rangeModel.minimum); var xloc:Number = (p*_track.width); + COMPILE::JS + { + _thumb.element.style.position = 'absolute'; + } _thumb.x = xloc; } }