summaryrefslogtreecommitdiffstats
path: root/examples/nodejs-mongodb-mongoose-restify/js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nodejs-mongodb-mongoose-restify/js')
-rw-r--r--examples/nodejs-mongodb-mongoose-restify/js/views/guestbook/list.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/nodejs-mongodb-mongoose-restify/js/views/guestbook/list.js b/examples/nodejs-mongodb-mongoose-restify/js/views/guestbook/list.js
index 392aae1..4841357 100644
--- a/examples/nodejs-mongodb-mongoose-restify/js/views/guestbook/list.js
+++ b/examples/nodejs-mongodb-mongoose-restify/js/views/guestbook/list.js
@@ -9,15 +9,12 @@ define([
el: '.guestbook-list-container',
render: function () {
var that = this;
-
var messages = new MessagesCollection();
messages.fetch({
success: function(messages) {
$(that.el).html(_.template(guestbookListTemplate, {messages: messages.models, _:_}));
}
});
-
-
}
});
return GuestbookList;