overleaf/services/web/public/coffee/base.coffee

16 lines
247 B
CoffeeScript
Raw Normal View History

2014-06-17 11:43:42 +00:00
define [
2014-07-08 11:02:26 +00:00
"libs"
2014-06-21 21:20:37 +00:00
"modules/recursionHelper"
"utils/underscore"
2014-06-17 11:43:42 +00:00
], () ->
App = angular.module("SharelatexApp", [
"ui.bootstrap"
"autocomplete"
2014-06-21 21:20:37 +00:00
"RecursionHelper"
2014-06-23 16:25:45 +00:00
"ng-context-menu"
"underscore"
"ngSanitize"
2014-08-13 15:04:23 +00:00
"ipCookie"
2014-06-17 11:43:42 +00:00
])
return App