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

10 lines
186 B
CoffeeScript
Raw Normal View History

2014-06-17 07:43:42 -04:00
define [
"../libs/angular-autocomplete/angular-autocomplete"
"../libs/ui-bootstrap"
], () ->
App = angular.module("SharelatexApp", [
"ui.bootstrap"
"autocomplete"
])
return App