fix attachment view to bypass
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/4fbeff9a Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/4fbeff9a Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/4fbeff9a Branch: refs/heads/Update-Sidebar-Ui Commit: 4fbeff9aca77863108535225a9a934b00e2a3b7d Parents: 4e90456 Author: sebastianrothbucher <[email protected]> Authored: Sat Jun 14 13:57:22 2014 +0200 Committer: Robert Kowalski <[email protected]> Committed: Wed Jun 18 19:43:35 2014 +0200 ---------------------------------------------------------------------- src/fauxton/app/addons/documents/templates/code_editor.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/4fbeff9a/src/fauxton/app/addons/documents/templates/code_editor.html ---------------------------------------------------------------------- diff --git a/src/fauxton/app/addons/documents/templates/code_editor.html b/src/fauxton/app/addons/documents/templates/code_editor.html index e9a46cf..811e111 100644 --- a/src/fauxton/app/addons/documents/templates/code_editor.html +++ b/src/fauxton/app/addons/documents/templates/code_editor.html @@ -31,7 +31,7 @@ the License. <ul class="dropdown-menu"> <%_.each(attachments, function (att) { %> <li> - <a href="<%- att.url %>" target="_blank"> <strong> <%- att.fileName %> </strong> - + <a href="<%- att.url %>" target="_blank" data-bypass="true"> <strong> <%- att.fileName %> </strong> - <span> <%- att.contentType %>, <%- formatSize(att.size)%> </span> </a> </li>
