File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,12 @@ ListController.prototype.init = function(){
30
30
31
31
$ ( ".todo" , self . oView ) . bind ( "click" , function ( ) {
32
32
var oElement = this ;
33
- debugger ;
34
33
self . oModel . completeItem ( this . id , function ( ) {
35
34
oElement . className = "done" ;
36
35
} ) ;
37
36
} ) ;
38
37
$ ( ".done" , self . oView ) . bind ( "click" , function ( ) {
39
38
var oElement = this ;
40
- debugger ;
41
39
self . oModel . undoItem ( this . id , function ( ) {
42
40
oElement . className = "todo" ;
43
41
} ) ;
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ TodoModel.prototype.all = function(fpCallback){
23
23
jQuery . ajax ( {
24
24
url : "/todo-items" ,
25
25
success : function ( oData , oXhr ) {
26
- debugger ;
27
26
fpCallback ( null , oData ) ;
28
27
} ,
29
28
error : function ( oXhr ) {
You can’t perform that action at this time.
0 commit comments