summaryrefslogtreecommitdiffstats
path: root/examples/nodejs-mongodb-mongoose-restify/templates
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nodejs-mongodb-mongoose-restify/templates')
-rw-r--r--examples/nodejs-mongodb-mongoose-restify/templates/guestbook/list.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/list.html b/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/list.html
index 1256a56..7f7541c 100644
--- a/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/list.html
+++ b/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/list.html
@@ -1,7 +1,6 @@
-<% console.log(messages);_.each(messages, function(message) { %>
+<% _.each(messages, function(message) { %>
<p><%= message.get('message') %></p>
<em><%= message.get('date') %></em>
-
<% }); %>