When x or y is set, change the style position to "absolute".
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/6c71106e Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/6c71106e Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/6c71106e Branch: refs/heads/feature/chart-work Commit: 6c71106e120b5b2f366b314e904dbcaadcf2ff2c Parents: ce25c47 Author: Peter Ent <[email protected]> Authored: Mon Mar 27 16:06:46 2017 -0400 Committer: Peter Ent <[email protected]> Committed: Mon Mar 27 16:06:46 2017 -0400 ---------------------------------------------------------------------- .../HTML/src/main/flex/org/apache/flex/core/UIBase.as | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6c71106e/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/UIBase.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/UIBase.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/UIBase.as index af9e255..dfe94bf 100644 --- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/UIBase.as +++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/UIBase.as @@ -637,7 +637,7 @@ package org.apache.flex.core COMPILE::JS public function set x(value:Number):void { -// positioner.style.position = 'absolute'; + positioner.style.position = 'absolute'; positioner.style.left = value + 'px'; } @@ -670,7 +670,7 @@ package org.apache.flex.core } COMPILE::JS { -// positioner.style.position = 'absolute'; + positioner.style.position = 'absolute'; positioner.style.left = value + 'px'; } } @@ -693,7 +693,7 @@ package org.apache.flex.core COMPILE::JS public function set y(value:Number):void { -// positioner.style.position = 'absolute'; + positioner.style.position = 'absolute'; positioner.style.top = value + 'px'; } @@ -726,7 +726,7 @@ package org.apache.flex.core } COMPILE::JS { -// positioner.style.position = 'absolute'; + positioner.style.position = 'absolute'; positioner.style.top = value + 'px'; } }
