You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by de...@apache.org on 2013/09/09 15:19:12 UTC

[02/10] git commit: updated refs/heads/1807-Replication to 38970f1

Fixing PrettyPrint issue on _changes


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

Branch: refs/heads/1807-Replication
Commit: 04716fc7e2c43ff7decf63facd69e07fc9ae476c
Parents: 555c061
Author: suelockwood <de...@gmail.com>
Authored: Thu Sep 5 15:21:43 2013 -0400
Committer: suelockwood <de...@gmail.com>
Committed: Thu Sep 5 15:21:43 2013 -0400

----------------------------------------------------------------------
 src/fauxton/app/templates/documents/changes.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/04716fc7/src/fauxton/app/templates/documents/changes.html
----------------------------------------------------------------------
diff --git a/src/fauxton/app/templates/documents/changes.html b/src/fauxton/app/templates/documents/changes.html
index e528a1c..5a29644 100644
--- a/src/fauxton/app/templates/documents/changes.html
+++ b/src/fauxton/app/templates/documents/changes.html
@@ -29,7 +29,7 @@ the License.
         <td> <a href="#<%= database.url('app') %>/<%= change.id %>"><%= change.id %></a> </td>
       <% } %>
         <td> 
-          <pre class="prettyprint">  <%= JSON.stringify({changes: change.changes, doc: change.doc}, null, " ") %> </pre>
+          <pre class="prettyprint">  <%- JSON.stringify({changes: change.changes, doc: change.doc}, null, " ") %> </pre>
       </td>
       <td><%= change.deleted ? "true" : "false" %></td>
     </tr>