fix up FlexJSStore_jquery
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/b1f78ddf Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/b1f78ddf Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/b1f78ddf Branch: refs/heads/core_js_to_as Commit: b1f78ddfb31104aa34309c627a265b2a16df2398 Parents: 018ff46 Author: Alex Harui <[email protected]> Authored: Fri Dec 11 23:26:29 2015 -0800 Committer: Alex Harui <[email protected]> Committed: Fri Dec 11 23:26:29 2015 -0800 ---------------------------------------------------------------------- .../src/productsView/ProductCatalogThumbnail.mxml | 6 +++--- .../FlexJSStore_jquery/src/productsView/ProductDetails.mxml | 6 +++--- .../FlexJSStore_jquery/src/productsView/ProductListItem.mxml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b1f78ddf/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductCatalogThumbnail.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductCatalogThumbnail.mxml b/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductCatalogThumbnail.mxml index dec248f..1d8ce8f 100755 --- a/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductCatalogThumbnail.mxml +++ b/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductCatalogThumbnail.mxml @@ -183,21 +183,21 @@ limitations under the License. <js:style> <js:SimpleCSSStyles paddingRight="8" right="8" top="12" /> <!-- gap="4" --> </js:style> - <js:ImageButton id="purchase" backgroundImage="assets/button_cart_empty.png" className="hoverButton" + <js:ImageButton id="purchase" source="assets/button_cart_empty.png" className="hoverButton" click="dispatchEvent(new ProductThumbEvent(ProductThumbEvent.PURCHASE, product))" width="30"> <js:beads> <js:ToolTipBead toolTip="Add to cart"/> </js:beads> </js:ImageButton> - <js:ImageButton id="compare" backgroundImage="assets/button_compare.png" className="hoverButton" + <js:ImageButton id="compare" source="assets/button_compare.png" className="hoverButton" click="dispatchEvent(new ProductThumbEvent(ProductThumbEvent.COMPARE, product))" width="30"> <js:beads> <js:ToolTipBead toolTip="Add to compare list"/> </js:beads> </js:ImageButton> - <js:ImageButton id="details" backgroundImage="assets/button_details.png" className="hoverButton" + <js:ImageButton id="details" source="assets/button_details.png" className="hoverButton" click="dispatchEvent(new ProductThumbEvent(ProductThumbEvent.DETAILS, product))" width="30"> <js:beads> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b1f78ddf/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductDetails.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductDetails.mxml b/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductDetails.mxml index f0162ad..fa32497 100755 --- a/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductDetails.mxml +++ b/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductDetails.mxml @@ -125,17 +125,17 @@ limitations under the License. <js:SimpleCSSStyles marginTop="4" right="16" top="36" /> </js:style> <js:Spacer width="100%"/> - <js:ImageButton id="purchase" backgroundImage="assets/button_cart_empty.png" click="dispatchEvent(new ProductThumbEvent(ProductThumbEvent.PURCHASE, product))" width="30"> + <js:ImageButton id="purchase" source="assets/button_cart_empty.png" click="dispatchEvent(new ProductThumbEvent(ProductThumbEvent.PURCHASE, product))" width="30"> <js:beads> <js:ToolTipBead toolTip="Add to cart"/> </js:beads> </js:ImageButton> - <js:ImageButton id="compare" backgroundImage="assets/button_compare.png" click="dispatchEvent(new ProductThumbEvent(ProductThumbEvent.COMPARE, product))" width="30"> + <js:ImageButton id="compare" source="assets/button_compare.png" click="dispatchEvent(new ProductThumbEvent(ProductThumbEvent.COMPARE, product))" width="30"> <js:beads> <js:ToolTipBead toolTip="Add to compare list"/> </js:beads> </js:ImageButton> - <js:ImageButton id="tiles" backgroundImage="assets/button_tiles.png" click="dispatchEvent(new ProductThumbEvent(ProductThumbEvent.BROWSE, product));" width="30"> + <js:ImageButton id="tiles" source="assets/button_tiles.png" click="dispatchEvent(new ProductThumbEvent(ProductThumbEvent.BROWSE, product));" width="30"> <js:beads> <js:ToolTipBead toolTip="Back to thumbnail view"/> </js:beads> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b1f78ddf/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductListItem.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductListItem.mxml b/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductListItem.mxml index 0a83e1a..2864cca 100755 --- a/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductListItem.mxml +++ b/examples/flexjs/FlexJSStore_jquery/src/productsView/ProductListItem.mxml @@ -99,7 +99,7 @@ limitations under the License. <js:ContainerDataBinding /> </js:beads> - <js:ImageButton id="removeButton" backgroundImage="assets/trashcan.png" + <js:ImageButton id="removeButton" source="assets/trashcan.png" width="14" height="14" y="5" click="removeItem()"> <js:beads>
