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 2014/12/23 08:41:30 UTC

[07/28] git commit: [flex-asjs] [refs/heads/develop] - set the tops of these components

set the tops of these components


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

Branch: refs/heads/develop
Commit: 0e5eab0361323fca6726cd66105f0cef5ad20262
Parents: 023424a
Author: Alex Harui <ah...@apache.org>
Authored: Wed Dec 17 17:54:21 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Dec 17 17:54:21 2014 -0800

----------------------------------------------------------------------
 examples/FlexJSStore/src/ProductsView.mxml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0e5eab03/examples/FlexJSStore/src/ProductsView.mxml
----------------------------------------------------------------------
diff --git a/examples/FlexJSStore/src/ProductsView.mxml b/examples/FlexJSStore/src/ProductsView.mxml
index 9b42fa1..636413e 100755
--- a/examples/FlexJSStore/src/ProductsView.mxml
+++ b/examples/FlexJSStore/src/ProductsView.mxml
@@ -81,21 +81,21 @@ limitations under the License.
         <productsView:Grip id="filterGrip" gripIcon="assets/icon_magnifier.png" 
             gripTip="Show filter panel" click="currentState = 'showFilter'"/>
     
-        <productsView:ProductFilterPanel x="{filterGrip.width}" id="filterPanel" width="265" height="100%"
+        <productsView:ProductFilterPanel x="{filterGrip.width}" y="0" id="filterPanel" width="265" height="100%"
             filter="catalogPanel.filter(event.filter, event.live)"
             compare="catalogPanel.compare(filterPanel.productList.getProducts())"
             initComplete="if (catalog) filterPanel.filter.count = catalog.length"/>
     
         <productsView:ProductCart id="cartPanel" width="265" height="100%">
             <productsView:style>
-                <basic:SimpleCSSStyles right="{cartGrip.width}" />
+                <basic:SimpleCSSStyles right="{cartGrip.width}" top="0" />
             </productsView:style>
         </productsView:ProductCart>
 
         <productsView:Grip id="cartGrip" gripIcon="assets/icon_cart_empty.png"
             gripTip="Show cart" click="currentState = 'showCart'">
             <productsView:style>
-                <basic:SimpleCSSStyles right="0" />
+                <basic:SimpleCSSStyles right="0" top="0"/>
             </productsView:style>
         </productsView:Grip>