You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2017/05/30 19:48:00 UTC

[25/50] git commit: [flex-asjs] [refs/heads/tlf] - absolute positioned containers without any size specification appear to be treated as zero size inside of flex-box. We could have absolute positioning layouts set sizes but for now, just set the size on

absolute positioned containers without any size specification appear to be treated as zero size inside of flex-box.  We could have absolute positioning layouts set sizes but for now, just set the size on the container.


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/0b50ba35
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/0b50ba35
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/0b50ba35

Branch: refs/heads/tlf
Commit: 0b50ba354c6007e435d75de46ac3d2df642b6a79
Parents: 0428a14
Author: Alex Harui <ah...@apache.org>
Authored: Wed May 24 20:27:16 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 24 21:41:58 2017 -0700

----------------------------------------------------------------------
 .../flexjs/FlexJSStore/src/main/flex/productsView/ProductCart.mxml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0b50ba35/examples/flexjs/FlexJSStore/src/main/flex/productsView/ProductCart.mxml
----------------------------------------------------------------------
diff --git a/examples/flexjs/FlexJSStore/src/main/flex/productsView/ProductCart.mxml b/examples/flexjs/FlexJSStore/src/main/flex/productsView/ProductCart.mxml
index 3469806..5df06d8 100755
--- a/examples/flexjs/FlexJSStore/src/main/flex/productsView/ProductCart.mxml
+++ b/examples/flexjs/FlexJSStore/src/main/flex/productsView/ProductCart.mxml
@@ -96,7 +96,7 @@ limitations under the License.
         removeProduct="productListEventHandler(event)"
         showQuantity="true" />
     
-    <js:Container style="right:0" id="totalContainer">
+    <js:Container style="right:0" id="totalContainer" width="100%" height="60">
         <js:beads>
             <js:VerticalColumnLayout numColumns="2" />
         </js:beads>