Skip to content

Instantly share code, notes, and snippets.

@ilguzin
Created January 14, 2014 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilguzin/8424265 to your computer and use it in GitHub Desktop.
Save ilguzin/8424265 to your computer and use it in GitHub Desktop.
Include UnderscoreJS into angular application as module
// This will simply create link to underscore libraries via wrapping it into service
angular.module('underscore', [])
.factory('_', function() {
return window._;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment