Repository: flex-asjs Updated Branches: refs/heads/develop 21be9bc8d -> 64e9f0c08
revert 235ce5860bafe7de1a5aa2ed92ea10ee1aa07674. It caused TopContainer to actually have 0 height in Safari Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/64e9f0c0 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/64e9f0c0 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/64e9f0c0 Branch: refs/heads/develop Commit: 64e9f0c08761e9b1201568ed6b5e1a163cb0ccdf Parents: 21be9bc Author: Alex Harui <[email protected]> Authored: Tue Sep 26 12:40:14 2017 -0700 Committer: Alex Harui <[email protected]> Committed: Tue Sep 26 12:40:14 2017 -0700 ---------------------------------------------------------------------- examples/flexjs/ASDoc/src/main/flex/ASDocMainView.mxml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/64e9f0c0/examples/flexjs/ASDoc/src/main/flex/ASDocMainView.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/ASDoc/src/main/flex/ASDocMainView.mxml b/examples/flexjs/ASDoc/src/main/flex/ASDocMainView.mxml index 4df58a6..d1b7158 100644 --- a/examples/flexjs/ASDoc/src/main/flex/ASDocMainView.mxml +++ b/examples/flexjs/ASDoc/src/main/flex/ASDocMainView.mxml @@ -59,19 +59,19 @@ limitations under the License. </fx:Style> <js:beads> <js:ViewDataBinding /> - <js:OneFlexibleChildVerticalLayout flexibleChild="topContainer" /> + <js:OneFlexibleChildVerticalLayoutForOverflow flexibleChild="topContainer" /> </js:beads> <js:Group width="100%" id="titleGroup"> <js:beads> - <js:OneFlexibleChildHorizontalLayout flexibleChild="title" /> + <js:OneFlexibleChildHorizontalLayoutForOverflow flexibleChild="title" /> </js:beads> - <js:Label text="FlexJS ActionScript Library Reference" id="title" height="30" style="fontSize:20" width="0%"/> + <js:Label text="FlexJS ActionScript Library Reference" id="title" height="30" style="fontSize:20"/> <js:CheckBox id="topLevel" text="Top-Level" click="showTopLevel()" /> <js:CheckBox id="viewBeads" text="View Bead" click="showViewBeads()" /> </js:Group> - <js:Group width="100%" className="topContainer" id="topContainer" height="0%"> + <js:Group width="100%" className="topContainer" id="topContainer"> <js:beads> - <js:OneFlexibleChildHorizontalLayout flexibleChild="rightSide" /> + <js:OneFlexibleChildHorizontalLayoutForOverflow flexibleChild="rightSide" /> <js:LayoutChangeNotifier watchedProperty="{ASDocModel(applicationModel).packageList}" initialValue="null" /> </js:beads> <js:Group width="300" height="100%" className="leftSide" id="leftSide"> @@ -81,7 +81,7 @@ limitations under the License. <js:List id="packageList" dataProvider="{ASDocModel(applicationModel).packageList}" change="packageChangedHandler()" width="100%" height="50%"/> <js:List id="classList" dataProvider="{ASDocModel(applicationModel).classList}" change="classChangedHandler()" width="100%" height="50%"/> </js:Group> - <js:Container className="rightSide" id="rightSide" height="100%" width="0%"> + <js:Container className="rightSide" id="rightSide" height="100%"> <js:beads> <js:VerticalLayout /> <js:ScrollingViewport />
