diff options
author | Christopher Lenz <cmlenz@apache.org> | 2009-01-15 16:07:13 +0000 |
---|---|---|
committer | Christopher Lenz <cmlenz@apache.org> | 2009-01-15 16:07:13 +0000 |
commit | 369dfbc2babdc2db0e5a07736b763bc06c5b9914 (patch) | |
tree | b50360a1317936a66e088e0181691d2cc0237c63 /share/www | |
parent | 258d86091229638ffdcfa76939bf062204b90ecc (diff) |
Fix Futon Javascript syntax error in IE.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@734739 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www')
-rw-r--r-- | share/www/script/futon.browse.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/futon.browse.js b/share/www/script/futon.browse.js index b85e8691..d13724ea 100644 --- a/share/www/script/futon.browse.js +++ b/share/www/script/futon.browse.js @@ -119,7 +119,7 @@ var templates = { javascript: "function(doc) {\n emit(null, doc);\n}", python: "def fun(doc):\n yield None, doc", - ruby: "{|doc|\n emit(nil, doc);\n}", + ruby: "{|doc|\n emit(nil, doc);\n}" } this.addDocument = function() { |