Created
August 2, 2013 00:41
-
-
Save mkalygin/6136651 to your computer and use it in GitHub Desktop.
JavaScript submodule with jQuery.
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 Module = (function (Module, window, $) { | |
var SubModule = Module.SubModule = Module.SubModule || {}; | |
$.extend(SubModule, { | |
initialize: function () { | |
} | |
}); | |
return Module; | |
}(Module || {}, window, jQuery)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment