Skip to content

Instantly share code, notes, and snippets.

@poshboytl
Forked from cowboy/HEY-YOU.md
Created May 11, 2012 15:52
Show Gist options
  • Save poshboytl/2660585 to your computer and use it in GitHub Desktop.
Save poshboytl/2660585 to your computer and use it in GitHub Desktop.
jQuery Tiny Pub/Sub: A really, really, REALLY tiny pub/sub implementation for jQuery.(coffee)
$.subscribe = (event, handle) ->
if not o[event]
o[event] = []
o[event].push handle
true
$.unsubscribe = (event) ->
if o[event]
delete o[event]
$.publish = (event, params) ->
if o[event]
for fn in o[event]
fn params
null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment