Skip to content

Instantly share code, notes, and snippets.

@gvarela
Created May 31, 2012 21:44
Show Gist options
  • Save gvarela/2846528 to your computer and use it in GitHub Desktop.
Save gvarela/2846528 to your computer and use it in GitHub Desktop.
principleofcompletesurprise.coffee
class MyButton
constructor: () ->
#do stuff....
@buildElement()
return @element # <-- never ever do this
build: ->
@element = $('<div>')
# do some other stuff....
@bradhaydon
Copy link

You're no fun.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment