overleaf/services/web/public/coffee/base.coffee
2015-11-05 10:14:25 +00:00

26 lines
484 B
CoffeeScript

define [
"libs"
"modules/recursionHelper"
"modules/errorCatcher"
"modules/localStorage"
"utils/underscore"
], () ->
App = angular.module("SharelatexApp", [
"ui.bootstrap"
"autocomplete"
"RecursionHelper"
"ng-context-menu"
"underscore"
"ngSanitize"
"ipCookie"
"mvdSixpack"
"ErrorCatcher"
"localStorage"
"ngTagsInput"
]).config (sixpackProvider)->
sixpackProvider.setOptions({
debug: false
baseUrl: window.sharelatex.sixpackDomain
})
return App