diff options
author | Jan Lehnardt <jan@apache.org> | 2009-08-04 12:28:58 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2009-08-04 12:28:58 +0000 |
commit | afb9467fbe19d0741559253d3042627c299abbcf (patch) | |
tree | 6c5a9bfe148323eef7c22f7a0fab672ea37c16cb /share | |
parent | a613317745c9b88e2c0d01e9a24f8b5d7b5b242e (diff) |
add compile-time conditionals to support the upcoming Spidermonkey 1.8, swap searching for libjs and libmozjs, patch by Alessandro Decina, closes COUCHDB-288
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@800750 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-rw-r--r-- | share/www/script/test/show_documents.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/test/show_documents.js b/share/www/script/test/show_documents.js index 8a1edd2d..a1138596 100644 --- a/share/www/script/test/show_documents.js +++ b/share/www/script/test/show_documents.js @@ -112,7 +112,7 @@ couchTests.show_documents = function(debug) { // Becase Safari can't stand to see that dastardly // E4X outside of a string. Outside of tests you // can just use E4X literals. - this.eval('xml.node.@foo = doc.word'); + eval('xml.node.@foo = doc.word'); return { body: xml }; |