Changed to the normal flexible layouts
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/235ce586 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/235ce586 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/235ce586 Branch: refs/heads/feature/strand-work Commit: 235ce5860bafe7de1a5aa2ed92ea10ee1aa07674 Parents: e32fc22 Author: Harbs <ha...@in-tools.com> Authored: Mon Jul 31 10:56:25 2017 +0300 Committer: Harbs <ha...@in-tools.com> Committed: Mon Jul 31 10:56:25 2017 +0300 ---------------------------------------------------------------------- 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/235ce586/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 d1b7158..4df58a6 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:OneFlexibleChildVerticalLayoutForOverflow flexibleChild="topContainer" /> + <js:OneFlexibleChildVerticalLayout flexibleChild="topContainer" /> </js:beads> <js:Group width="100%" id="titleGroup"> <js:beads> - <js:OneFlexibleChildHorizontalLayoutForOverflow flexibleChild="title" /> + <js:OneFlexibleChildHorizontalLayout flexibleChild="title" /> </js:beads> - <js:Label text="FlexJS ActionScript Library Reference" id="title" height="30" style="fontSize:20"/> + <js:Label text="FlexJS ActionScript Library Reference" id="title" height="30" style="fontSize:20" width="0%"/> <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"> + <js:Group width="100%" className="topContainer" id="topContainer" height="0%"> <js:beads> - <js:OneFlexibleChildHorizontalLayoutForOverflow flexibleChild="rightSide" /> + <js:OneFlexibleChildHorizontalLayout 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%"> + <js:Container className="rightSide" id="rightSide" height="100%" width="0%"> <js:beads> <js:VerticalLayout /> <js:ScrollingViewport />