url: function()

in js/models/todo.js [21:27]


    url: function() { 
      if( this.isNew() ){
        return this.collection.url;
      }else{
        return this.get('url'); 
      }
    },