Skip to content

Instantly share code, notes, and snippets.

@xdemocle
Created August 31, 2015 13:22
Show Gist options
  • Save xdemocle/1ad374d2be98e1ad15f5 to your computer and use it in GitHub Desktop.
Save xdemocle/1ad374d2be98e1ad15f5 to your computer and use it in GitHub Desktop.
Encapsulated JS Scripts examples
/**
* Encapsulated JS Scripts
*/
(function (window, angular, Hammer) {
'use strict';
function exampleFunction (element) {
return 'something';
}
})(this, this.angular, this.Hammer);
/**
* Example with window instead of this
*/
(function (window, angular, Hammer) {
'use strict';
function exampleFunction (element) {
return 'something';
}
})(window, window.angular, window.Hammer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment