This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 8b6b78414314a81112de15d7e41fb4dadb696697 Author: Alex Harui <[email protected]> AuthorDate: Thu Sep 6 17:01:54 2018 -0700 don't let spinner set absolute position inside a NumericStepper --- .../src/main/royale/org/apache/royale/html/beads/NumericStepperView.as | 1 + 1 file changed, 1 insertion(+) diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/NumericStepperView.as b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/NumericStepperView.as index 1c6ee39..6544e86 100644 --- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/NumericStepperView.as +++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/NumericStepperView.as @@ -104,6 +104,7 @@ package org.apache.royale.html.beads COMPILE::JS { spinner.positioner.style.display = 'inline-block'; + spinner.positioner.style.position = ''; } // listen for changes to the text input field which will reset the
