Last active
August 29, 2015 14:28
-
-
Save rotemtam/e9af114f63d2f6f2b583 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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