Skip to content

Instantly share code, notes, and snippets.

@anderson-mota
Created January 21, 2013 18:12
Show Gist options
  • Save anderson-mota/4588035 to your computer and use it in GitHub Desktop.
Save anderson-mota/4588035 to your computer and use it in GitHub Desktop.
Padrão JS
var site = function(){
function privateFunction(){
}
return {
Init: function(){
}
}
}();
$(function(){
site.Init();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment