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(){
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 } ) ;
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments