Skip to content

Instantly share code, notes, and snippets.

@lindsayevans
Created March 31, 2010 06:05
Show Gist options
  • Save lindsayevans/349995 to your computer and use it in GitHub Desktop.
Save lindsayevans/349995 to your computer and use it in GitHub Desktop.
var PROJECT_NAME = (function($){
// Self
var _this = {};
// Puublic methods
_this.init_body = function(){
$('body').addClass('js-enabled');
};
// Private methods
// document.ready - initialise various things
$(document).ready(function(){
_this.init_body();
});
return _this;
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment