summaryrefslogtreecommitdiff
path: root/share/www/script/futon.js
diff options
context:
space:
mode:
authorChristopher Lenz <cmlenz@apache.org>2009-07-21 12:15:36 +0000
committerChristopher Lenz <cmlenz@apache.org>2009-07-21 12:15:36 +0000
commitfaa5479e472356770a8cda116defd002d88b20d6 (patch)
tree569c30a5dc7f52994523c150d1ea0ba35d052280 /share/www/script/futon.js
parent2e8eeb0af9defee040d3e6496fdb5508940d1161 (diff)
Avoid wrapping of long database names in the Futon sidebar.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@796269 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script/futon.js')
-rw-r--r--share/www/script/futon.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/www/script/futon.js b/share/www/script/futon.js
index b9f05791..77bd8cc8 100644
--- a/share/www/script/futon.js
+++ b/share/www/script/futon.js
@@ -65,9 +65,9 @@
recentDbs.sort();
$.each(recentDbs, function(idx, name) {
if (name) {
- $("#dbs").append("<li><a href='database.html?" +
- encodeURIComponent(name) + "'>" + name +
+ $("#dbs").append("<li>" +
"<button class='remove' title='Remove from list' value='" + name + "'></button>" +
+ "<a href='database.html?" + encodeURIComponent(name) + "'>" + name +
"</a></li>");
}
});