Skip to content

Instantly share code, notes, and snippets.

@swallentin
Created September 20, 2012 05:57
Show Gist options
  • Save swallentin/3754190 to your computer and use it in GitHub Desktop.
Save swallentin/3754190 to your computer and use it in GitHub Desktop.
Backbone.js Model Template
var Todo = Backbone.Model.extend({
urlRoot: '/todos',
defaults: {
"priority": 3
},
validate: function(attrs) {
if (!attrs.title) {
return "cannot have an empty title";
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment