mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
24 lines
527 B
CoffeeScript
24 lines
527 B
CoffeeScript
define [
|
|
"libs"
|
|
"modules/recursionHelper"
|
|
"utils/underscore"
|
|
# TODo move these into a separate definition
|
|
"ide/pdfng/directives/pdfViewer"
|
|
"ide/pdfng/directives/pdfPage"
|
|
"ide/pdfng/directives/pdfRenderer"
|
|
"ide/pdfng/directives/pdfTextLayer"
|
|
"ide/pdfng/directives/pdfAnnotations"
|
|
"ide/pdfng/directives/pdfHighlights"
|
|
], () ->
|
|
App = angular.module("SharelatexApp", [
|
|
"ui.bootstrap"
|
|
"autocomplete"
|
|
"RecursionHelper"
|
|
"ng-context-menu"
|
|
"underscore"
|
|
"ngSanitize"
|
|
"ipCookie"
|
|
"pdfViewerApp"
|
|
])
|
|
|
|
return App
|