Created
May 11, 2012 14:47
Revisions
-
adamjmcintyre created this gist
May 11, 2012 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ ;(function(win, $){ "use strict"; // Check to see if our global is available as a member of window; if it is, our namespace root exists; if not, we'll create it. var foospace = win.foospace = (typeof win.foospace !== "undefined") ? win.foospace : {}; (foospace.module = function(){ return{ _init : function(){ // Etc. etc. } } }())._init(); }(window, jQuery));