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"
|
2014-12-12 13:58:07 +00:00
|
|
|
"modules/errorCatcher"
|
2014-07-01 13:25:32 +00:00
|
|
|
"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"
|
2014-07-01 13:25:32 +00:00
|
|
|
"underscore"
|
|
|
|
"ngSanitize"
|
2014-08-13 15:04:23 +00:00
|
|
|
"ipCookie"
|
2014-12-12 13:58:07 +00:00
|
|
|
"ErrorCatcher"
|
2014-06-17 11:43:42 +00:00
|
|
|
])
|
|
|
|
|
2014-11-25 16:00:21 +00:00
|
|
|
return App
|