Skip to content

Instantly share code, notes, and snippets.

@skhilko
Created September 11, 2013 03:42
Show Gist options
  • Save skhilko/6519118 to your computer and use it in GitHub Desktop.
Save skhilko/6519118 to your computer and use it in GitHub Desktop.
Revealing Module Pattern: Keep consistent syntax and mix and match what to make global.
module = function(){
var current = null;
var labels = {
'home':'home',
'articles':'articles',
'contact':'contact'
};
var init = function(){
};
var show = function(){
current = 1;
};
var hide = function(){
show();
}
return{init:init, show:show, current:current}
}();
module.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment