Advertisement
Guest User

Untitled

a guest
May 29th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. // Works in modern browsers + IE9, but Modernizer has a polyfill baked in for function.bind.
  2. // Hat tip Paul Irish.
  3.  
  4. var o = $( {} );
  5. $.subscribe = o.on.bind(o);
  6. $.unsubscribe = o.off.bind(o);
  7. $.publish = o.trigger.bind(o);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement