Skip to content

Instantly share code, notes, and snippets.

@oirodolfo
Last active February 5, 2016 17:52
Show Gist options
  • Save oirodolfo/3b161729d0c731b7d2f3 to your computer and use it in GitHub Desktop.
Save oirodolfo/3b161729d0c731b7d2f3 to your computer and use it in GitHub Desktop.
;(function(window, document, $, Furian, undefined) {
'use strict';
var MeuModulo = window.MeuModulo = (function(Furian) {
var metodoPrivado = function() {
// métodos privados que são acessados diretamente dentro dos públicos
// ex: dentro do init: metodoPrivado()
};
return {
init: function() {
// Método de inicializacao
}
}
})(Furian);
})(window, document, jQuery, Furian);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment