Skip to content

Instantly share code, notes, and snippets.

@ChuckJHardySnippets
Created March 7, 2012 08:10
Show Gist options
  • Save ChuckJHardySnippets/1991847 to your computer and use it in GitHub Desktop.
Save ChuckJHardySnippets/1991847 to your computer and use it in GitHub Desktop.
JavaScript: Starter
$(document).ready(function() {
Review.init();
});
var Review = (function() {
return {
init: function() {
this.preset();
},
preset: function() {
// Global Attributes Go Here
}
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment