diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-03-24 03:52:51 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-03-24 03:52:51 +0000 |
commit | 73d8a267bd021ac518217ecc5cd16aa8c0df021f (patch) | |
tree | b5b1eed10b3e309077d13507b2247ff7e22285d9 /branches/sca-java-1.x/samples/store/src/main/resources | |
parent | 604b901248cea16a83e155e487778d045e5fcbc8 (diff) |
TUSCANY-2933 - Updating store sample to use widget Java Script fuctions in the new tuscany.sca namespace
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@757647 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/samples/store/src/main/resources')
-rw-r--r-- | branches/sca-java-1.x/samples/store/src/main/resources/uiservices/store.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/branches/sca-java-1.x/samples/store/src/main/resources/uiservices/store.html b/branches/sca-java-1.x/samples/store/src/main/resources/uiservices/store.html index 45604463d1..ba004e02ac 100644 --- a/branches/sca-java-1.x/samples/store/src/main/resources/uiservices/store.html +++ b/branches/sca-java-1.x/samples/store/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; |