Repository: couchdb-fauxton Updated Branches: refs/heads/master b26541cb6 -> bb33bea1a
Show full database name in browser's tooltip After PR #74 long database names are showed trimmed and it's hard to guess what the full name is. Parsing URL with eyes isn't handy since there are a lot of other information presents, urlescaping harms readability while you need to quickly figure out where you are. Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/bb33bea1 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/bb33bea1 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/bb33bea1 Branch: refs/heads/master Commit: bb33bea1a88fc2740141eecc8601e2ccb0ba6f9e Parents: b26541c Author: Alexander Shorin <[email protected]> Authored: Mon Oct 6 20:35:03 2014 +0400 Committer: Robert Kowalski <[email protected]> Committed: Mon Oct 6 18:53:52 2014 +0200 ---------------------------------------------------------------------- app/addons/fauxton/templates/breadcrumbs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/bb33bea1/app/addons/fauxton/templates/breadcrumbs.html ---------------------------------------------------------------------- diff --git a/app/addons/fauxton/templates/breadcrumbs.html b/app/addons/fauxton/templates/breadcrumbs.html index 52a5f94..486c154 100644 --- a/app/addons/fauxton/templates/breadcrumbs.html +++ b/app/addons/fauxton/templates/breadcrumbs.html @@ -24,4 +24,4 @@ the License. <% }); %> <% var last = _.last(crumbs) || {name: ''} %> -<li class="active"><%- last.name %></li> \ No newline at end of file +<li class="active" title="<%- last.name %>"><%- last.name %></li>
