Alan Casagrande
Results
1
comments of
Alan Casagrande
Not exactly pretty but one way you can do that: ``` javascript _.extend(MyModel.prototype, Backbone.Validation.mixin); MyModel.prototype.validate = function () { var errors = Backbone.Validation.mixin.validate.apply(this, arguments); if (errors) { return errors; }...