Skip to content

Instantly share code, notes, and snippets.

@IvanofSA
Last active October 13, 2015 21:55
Show Gist options
  • Save IvanofSA/0ada65576ee251f66fac to your computer and use it in GitHub Desktop.
Save IvanofSA/0ada65576ee251f66fac to your computer and use it in GitHub Desktop.
JS : module
var myModule = (function () {
var init = function () {
_setUpListners();
// то, что должно произойти сразу
};
var _setUpListners = function () {
//прослушка событий...
};
return {
init: init
};
})();
myModule.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment