summaryrefslogtreecommitdiffstats
path: root/branches/sca-equinox/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2008-09-29 01:19:42 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2008-09-29 01:19:42 +0000
commitaf8efbe0b8eba5d5cb28f27853eaa80d00d83828 (patch)
treed948026814e3ec426b766ce938c6c387e0729657 /branches/sca-equinox/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html
parentc95b09eb45e086de7b85a32b682a9b1eb42e4f2b (diff)
Pulled from trunk. Changes from SVN revision r699491.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@699949 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-equinox/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html')
-rw-r--r--branches/sca-equinox/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/branches/sca-equinox/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html b/branches/sca-equinox/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html
index ae1fbb4356..e58f14a635 100644
--- a/branches/sca-equinox/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html
+++ b/branches/sca-equinox/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html
@@ -55,7 +55,7 @@
}
function shoppingCart_getResponse(feedDoc) {
- // var xmlString = new XMLSerializer().serializeToString(feed);
+ // var xmlString = new XMLSerializer().serializeToString(feedDoc);
// alert("shoppingCart_getResponse feed xml=" + xmlString);
var feed = new Feed( feedDoc );
@@ -65,7 +65,7 @@
var list = "";
for (var i=0; i<entries.length; i++) {
// var item = entries[i].getElementsByTagName("content")[0].firstChild.nodeValue;
- var item = entries[i].getContent().getText();
+ var item = entries[ i ].getContent().getText();
list += item + ' <br>';
}
document.getElementById("shoppingCart").innerHTML = list;