Skip to content

Instantly share code, notes, and snippets.

@caiotarifa
Last active September 22, 2015 03:55
Show Gist options
  • Save caiotarifa/c9cc7bb6524f90f5c3cb to your computer and use it in GitHub Desktop.
Save caiotarifa/c9cc7bb6524f90f5c3cb to your computer and use it in GitHub Desktop.
var Application = (function(parent, $, window, document, undefined) {
'use strict';
var self = parent.module = parent.module || {};
function privateExample() {
return false;
}
self.publicExample = function() {
return true;
};
return self;
}(Application || {}, jQuery, window, document));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment