You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thedersen edited this page Dec 26, 2011
·
4 revisions
var SomeModel = Backbone.Model.extend({
validation: {
name: function(value) {
if(value !== 'something') {
// return an error message if the value is invalid; otherwise, return undefined
return 'Name is invalid';
}
}
}
});