Skip to content

Instantly share code, notes, and snippets.

@ellm
Created January 28, 2016 18:36
Show Gist options
  • Save ellm/edef14e5719579eb717b to your computer and use it in GitHub Desktop.
Save ellm/edef14e5719579eb717b to your computer and use it in GitHub Desktop.
JavaScript - Module Example using Init
var ModuleExample = {
init: function() {
var _self = this;
var varExample = $('form.variations_form');
function exampleFunction() {
console.log(this);
}
}
};
ModuleExample.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment