You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by cm...@apache.org on 2009/07/21 23:10:45 UTC

svn commit: r796537 - /couchdb/trunk/share/www/script/futon.js

Author: cmlenz
Date: Tue Jul 21 21:10:45 2009
New Revision: 796537

URL: http://svn.apache.org/viewvc?rev=796537&view=rev
Log:
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.

Modified:
    couchdb/trunk/share/www/script/futon.js

Modified: couchdb/trunk/share/www/script/futon.js
URL: http://svn.apache.org/viewvc/couchdb/trunk/share/www/script/futon.js?rev=796537&r1=796536&r2=796537&view=diff
==============================================================================
--- couchdb/trunk/share/www/script/futon.js (original)
+++ couchdb/trunk/share/www/script/futon.js Tue Jul 21 21:10:45 2009
@@ -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>");
         }
       });