Skip to content

Instantly share code, notes, and snippets.

@ScarHelsing
ScarHelsing / module.js
Last active December 26, 2015 14:30
Listen events module
var module = (function(){
var init = function(){
// what should happen immediately
_setUpListeners();
};
var _setUpListeners = function(){
// listen events
};