summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorChristopher Lenz <cmlenz@apache.org>2009-07-21 21:10:45 +0000
committerChristopher Lenz <cmlenz@apache.org>2009-07-21 21:10:45 +0000
commit1ddff48dbb8f18d3bde189477827164528a8d938 (patch)
tree0da7ad05851f3037023643c0886d0614b8e8fc2a /share
parentf2a91f36366d270b59d208712e59cf32533006be (diff)
Put the database name in the Futon sidebar in the link title, so it is still available in its entirety as a tooltip, even when the link text is cut off.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@796537 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-rw-r--r--share/www/script/futon.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/futon.js b/share/www/script/futon.js
index bdfbe93a..3f524094 100644
--- a/share/www/script/futon.js
+++ b/share/www/script/futon.js
@@ -67,7 +67,7 @@
if (name) {
$("#dbs").append("<li>" +
"<button class='remove' title='Remove from list' value='" + name + "'></button>" +
- "<a href='database.html?" + encodeURIComponent(name) + "'>" + name +
+ "<a href='database.html?" + encodeURIComponent(name) + "' title='" + name + "'>" + name +
"</a></li>");
}
});