Skip to content

Instantly share code, notes, and snippets.

@nouse
Created March 21, 2011 05:43
Show Gist options
  • Save nouse/879084 to your computer and use it in GitHub Desktop.
Save nouse/879084 to your computer and use it in GitHub Desktop.
modular js loaded in browser
this.Module = (($) ->
value = 0
pub =
init: ->
value = 10
console.log("inited #{value}")
add: ->
value += 10
console.log("value changed to #{value}")
)(jQuery)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment