Skip to content

Instantly share code, notes, and snippets.

@ScarHelsing
Last active December 26, 2015 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ScarHelsing/48cf9aeefcde7f52ea1b to your computer and use it in GitHub Desktop.
Save ScarHelsing/48cf9aeefcde7f52ea1b to your computer and use it in GitHub Desktop.
Listen events module
var module = (function(){
var init = function(){
// what should happen immediately
_setUpListeners();
};
var _setUpListeners = function(){
// listen events
};
return {
init : init
};
})();
module.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment