Skip to content

Instantly share code, notes, and snippets.

@rotemtam
Last active August 29, 2015 14:28
Show Gist options
  • Save rotemtam/e9af114f63d2f6f2b583 to your computer and use it in GitHub Desktop.
Save rotemtam/e9af114f63d2f6f2b583 to your computer and use it in GitHub Desktop.
var underscore = angular.module('underscore', []);
underscore.factory('_', ['$window', function($window) {
return $window._; // assumes underscore has already been loaded on the page
}]);
angular.module('kahootCloneApp', [
'ngAnimate',
'ngCookies',
'ngResource',
'ngRoute',
'ngSanitize',
'ngTouch',
'firebase',
'firebase.utils',
'simpleLogin',
'underscore'
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment