diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-12-06 07:19:24 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-12-06 07:19:24 +0000 |
commit | 5b6af381171f4500c7cfc5c9ce179edef9e0fd78 (patch) | |
tree | 438e7d673c060c967b24acf9b261e2176d0dccd6 /sca-cpp/trunk/samples/store-vhost | |
parent | 5bc169ce65762b5165c08e82386152ae83d58564 (diff) |
Create a js module for client side javascripts. Move client component script to that module and add a few utility scripts.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1042535 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/samples/store-vhost')
-rw-r--r-- | sca-cpp/trunk/samples/store-vhost/htdocs/domains/jane/index.html | 2 | ||||
-rw-r--r-- | sca-cpp/trunk/samples/store-vhost/htdocs/domains/joe/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sca-cpp/trunk/samples/store-vhost/htdocs/domains/jane/index.html b/sca-cpp/trunk/samples/store-vhost/htdocs/domains/jane/index.html index 3d9a74103c..179d28e9c9 100644 --- a/sca-cpp/trunk/samples/store-vhost/htdocs/domains/jane/index.html +++ b/sca-cpp/trunk/samples/store-vhost/htdocs/domains/jane/index.html @@ -20,7 +20,7 @@ <head>
<title>Store</title>
-<script type="text/javascript" src="/wiring/ref.js"></script>
+<script type="text/javascript" src="/component.js"></script>
<script type="text/javascript">
var store = component("Store");
diff --git a/sca-cpp/trunk/samples/store-vhost/htdocs/domains/joe/index.html b/sca-cpp/trunk/samples/store-vhost/htdocs/domains/joe/index.html index bd3ced57f9..5152b3798b 100644 --- a/sca-cpp/trunk/samples/store-vhost/htdocs/domains/joe/index.html +++ b/sca-cpp/trunk/samples/store-vhost/htdocs/domains/joe/index.html @@ -20,7 +20,7 @@ <head>
<title>Store</title>
-<script type="text/javascript" src="/wiring/ref.js"></script>
+<script type="text/javascript" src="/component.js"></script>
<script type="text/javascript">
var store = component("Store");
|