diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-03-24 03:54:31 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-03-24 03:54:31 +0000 |
commit | 9debe209439187555eaab6ef1523f952a8d58888 (patch) | |
tree | 75f3c82521a006808b2437ca1d2c61618ba3f62d /branches/sca-java-1.x/samples/store-secure | |
parent | 73d8a267bd021ac518217ecc5cd16aa8c0df021f (diff) |
TUSCANY-2933 - Updating store samples to use widget Java Script fuctions in the new tuscany.sca namespace
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@757649 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/samples/store-secure')
-rw-r--r-- | branches/sca-java-1.x/samples/store-secure/src/main/resources/uiservices/store.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/branches/sca-java-1.x/samples/store-secure/src/main/resources/uiservices/store.html b/branches/sca-java-1.x/samples/store-secure/src/main/resources/uiservices/store.html index 45604463d1..ba004e02ac 100644 --- a/branches/sca-java-1.x/samples/store-secure/src/main/resources/uiservices/store.html +++ b/branches/sca-java-1.x/samples/store-secure/src/main/resources/uiservices/store.html @@ -25,13 +25,13 @@ <script language="JavaScript"> //@Reference - var catalog = new Reference("catalog"); + var catalog = new tuscany.sca.Reference("catalog"); //@Reference - var shoppingCart = new Reference("shoppingCart"); + var shoppingCart = new tuscany.sca.Reference("shoppingCart"); //@Reference - var shoppingTotal = new Reference("shoppingTotal"); + var shoppingTotal = new tuscany.sca.Reference("shoppingTotal"); var catalogItems; |