You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2014/07/17 19:14:22 UTC

[10/10] fauxton commit: updated refs/heads/2158-changes-filter to b1121db

change <%= to <%- as <%= is not needed


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/b254d84c
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/b254d84c
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/b254d84c

Branch: refs/heads/2158-changes-filter
Commit: b254d84c4d8a6ebc26efdf9c10b6924ff1656254
Parents: 477debe
Author: Robert Kowalski <ro...@kowalski.gd>
Authored: Thu May 29 15:43:42 2014 +0200
Committer: Robert Kowalski <ro...@kowalski.gd>
Committed: Thu Jul 17 19:13:37 2014 +0200

----------------------------------------------------------------------
 app/addons/documents/templates/changes.html | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/b254d84c/app/addons/documents/templates/changes.html
----------------------------------------------------------------------
diff --git a/app/addons/documents/templates/changes.html b/app/addons/documents/templates/changes.html
index 9ed1413..fd4da0e 100644
--- a/app/addons/documents/templates/changes.html
+++ b/app/addons/documents/templates/changes.html
@@ -22,7 +22,7 @@ the License.
               seq
             </div>
             <div class="span8 change-sequence">
-              <%= change.seq %>
+              <%- change.seq %>
             </div>
             <div class="span2 text-right">
               <a class="js-copy" data-clipboard-text="<%= change.seq %>" data-bypass="true" href="#">
@@ -36,9 +36,9 @@ the License.
             </div>
             <div class="span8">
               <% if (change.deleted) { %>
-                <%= change.id %>
+                <%- change.id %>
               <% } else { %>
-                <a href="#<%- database.url('app') %>/<%- safeURL(change.id) %>"><%= change.id %></a>
+                <a href="#<%- database.url('app') %>/<%- safeURL(change.id) %>"><%- change.id %></a>
               <% } %>    </div>
             <div class="span2 text-right">
               <a class="js-copy" data-clipboard-text="<%= change.id %>" data-bypass="true" href="#">
@@ -62,7 +62,7 @@ the License.
               deleted
             </div>
             <div class="span10">
-              <%= change.deleted ? "True" : "False" %>
+              <%- change.deleted ? "True" : "False" %>
             </div>
           </div>
         </div>