Slideshare uses cookies to improve functionality and performance, and to provide you with relevant advertising. If you continue browsing the site, you agree to the use of cookies on this website. See our User Agreement and Privacy Policy.
Slideshare uses cookies to improve functionality and performance, and to provide you with relevant advertising. If you continue browsing the site, you agree to the use of cookies on this website. See our Privacy Policy and User Agreement for details.
Published on
module = function(){
Revealing Module
var current = null;
var labels = [
Pattern:
‘home’:’home’,
Keep consistent
‘articles’:’articles’,
syntax and mix and
‘contact’:’contact’
];
match what to make
function init(){
global.
};
function show(){
current = 1;
};
function hide(){
show();
};
return{init:init,show:show,current:current}
}();
Login to see the comments