Skip to content

Commit 59f1d75

Browse files
committed
Remove debugger sentence. Thanks aramirez-es
1 parent f507246 commit 59f1d75

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

MVC/1/ListController.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,12 @@ ListController.prototype.init = function(){
3030

3131
$(".todo", self.oView).bind("click", function(){
3232
var oElement = this;
33-
debugger;
3433
self.oModel.completeItem(this.id, function(){
3534
oElement.className = "done";
3635
});
3736
});
3837
$(".done", self.oView).bind("click", function(){
3938
var oElement = this;
40-
debugger;
4139
self.oModel.undoItem(this.id, function(){
4240
oElement.className = "todo";
4341
});

MVC/1/TodoModel.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ TodoModel.prototype.all = function(fpCallback){
2323
jQuery.ajax({
2424
url: "/todo-items",
2525
success: function (oData, oXhr) {
26-
debugger;
2726
fpCallback(null, oData);
2827
},
2928
error: function (oXhr) {

0 commit comments

Comments
 (0)