Last active
September 22, 2015 03:55
-
-
Save caiotarifa/c9cc7bb6524f90f5c3cb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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