/* eslint-disable camelcase, max-len, no-useless-escape, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS101: Remove unnecessary use of Array.from * DS102: Remove unnecessary code created because of implicit returns * DS103: Rewrite code to no longer use __guard__ * DS207: Consider shorter variations of null checks * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md */ import './utils/webpack-public-path' import './libraries' import './infrastructure/error-reporter' import './modules/recursionHelper' import './modules/errorCatcher' import './modules/localStorage' import './modules/sessionStorage' import getMeta from './utils/meta' import { configureMathJax } from './features/mathjax/configure' const App = angular .module('SharelatexApp', [ 'ui.bootstrap', 'RecursionHelper', 'ngSanitize', 'ErrorCatcher', 'localStorage', 'sessionStorage', 'ui.select', ]) .config([ '$qProvider', 'uiSelectConfig', function ($qProvider, uiSelectConfig) { $qProvider.errorOnUnhandledRejections(false) uiSelectConfig.spinnerClass = 'fa fa-refresh ui-select-spin' configureMathJax() }, ]) App.run([ '$rootScope', '$templateCache', function ($rootScope, $templateCache) { $rootScope.usersEmail = getMeta('ol-usersEmail') // UI Select templates are hard-coded and use Glyphicon icons (which we don't import). // The line below simply overrides the hard-coded template with our own, which is // basically the same but using Font Awesome icons. $templateCache.put( 'bootstrap/match.tpl.html', '
{{$select.placeholder}}
' ) }, ]) export default App