Skip to content

Instantly share code, notes, and snippets.

@dspangen
Created June 17, 2013 14:43
Show Gist options
  • Save dspangen/5797408 to your computer and use it in GitHub Desktop.
Save dspangen/5797408 to your computer and use it in GitHub Desktop.
var Mixin = {
mixedInFunction: function() {
console.log("I'm a mixed-in function!");
}
}
var ModelWithMixin = Backbone.Model.extend(_.extend({
initialize: function() {
console.log("I'm a constructor!");
}
}, Mixin));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment