mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
16 lines
No EOL
262 B
CoffeeScript
16 lines
No EOL
262 B
CoffeeScript
define [
|
|
"libs"
|
|
"modules/recursionHelper"
|
|
"utils/underscore"
|
|
], () ->
|
|
console.log "LOADING BASE"
|
|
App = angular.module("SharelatexApp", [
|
|
"ui.bootstrap"
|
|
"autocomplete"
|
|
"RecursionHelper"
|
|
"ng-context-menu"
|
|
"underscore"
|
|
"ngSanitize"
|
|
])
|
|
|
|
return App |