nextOrder: function()

in js/collections/todos.js [27:29]


		nextOrder: function () {
			return this.length ? this.last().get('order') + 1 : 1;
		},