Remove functions not being used

This commit is contained in:
Abhishek Das
2013-03-30 19:11:38 +05:30
parent a580cec44c
commit 276d9930cb
-7
View File
@@ -13,16 +13,9 @@ var app = app || {};
initialize: function() {
this.collection = new app.List();
this.collection.fetch();
this.render();
this.listenTo(this.collection, 'add', this.renderTask);
},
addTask: function() {
console.log('yes');
//var view = new app.TaskView({model: task})
},
render: function() {
this.collection.each(function(task) {
this.renderTask(task);