toggle: function()

in js/models/todo.js [30:34]


		toggle: function () {
			this.save({
				completed: !this.get('completed')
			},{patch:true});
		}