summaryrefslogtreecommitdiff
path: root/share/www/script/futon.format.js
diff options
context:
space:
mode:
authorChristopher Lenz <cmlenz@apache.org>2009-12-11 23:27:18 +0000
committerChristopher Lenz <cmlenz@apache.org>2009-12-11 23:27:18 +0000
commit95464554aaadb9d8cac554ada84a4db9328793fa (patch)
tree9099fd6e569c7a81740f1110efa94b322a846fa8 /share/www/script/futon.format.js
parentae46d1ed6221af19cbc060b879f80d81d227651c (diff)
Futon: Show empty lists and objects in document view as [] and {}, respectively.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@889856 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script/futon.format.js')
-rw-r--r--share/www/script/futon.format.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/share/www/script/futon.format.js b/share/www/script/futon.format.js
index 674f5f8f..601a91d3 100644
--- a/share/www/script/futon.format.js
+++ b/share/www/script/futon.format.js
@@ -72,6 +72,9 @@
}
if (index >= 0) buf.push(options.linesep, tab.substr(options.indent));
buf.push("]");
+ if (options.html) {
+ return "<code class='array'>" + buf.join("") + "</code>";
+ }
} else {
buf.push("{");
@@ -94,6 +97,9 @@
}
if (index >= 0) buf.push(options.linesep, tab.substr(options.indent));
buf.push("}");
+ if (options.html) {
+ return "<code class='object'>" + buf.join("") + "</code>";
+ }
}
return buf.join("");