Skip to content

Instantly share code, notes, and snippets.

@leshill
Created May 14, 2012 17:49
Show Gist options
  • Save leshill/2695318 to your computer and use it in GitHub Desktop.
Save leshill/2695318 to your computer and use it in GitHub Desktop.
Mixins in CoffeeScript
class SomeConcern
constructor: (klass) ->
_.extend klass.prototype,
doesAllTheThings: ->
true
class SomeView extends Backbone.View
SomeConcern(this)
render: ->
@doesAllTheThings()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment