2020-05-12 10:23:53 -04:00
|
|
|
/* global MathJax */
|
|
|
|
|
2018-11-05 05:06:39 -05:00
|
|
|
/* 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
|
|
|
|
*/
|
2019-12-11 04:53:31 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
import './libraries'
|
|
|
|
import './utils/sentry'
|
|
|
|
import './modules/recursionHelper'
|
|
|
|
import './modules/errorCatcher'
|
|
|
|
import './modules/localStorage'
|
|
|
|
import './modules/sessionStorage'
|
2019-12-11 04:53:31 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
const App = angular
|
|
|
|
.module('SharelatexApp', [
|
|
|
|
'ui.bootstrap',
|
|
|
|
'autocomplete',
|
|
|
|
'RecursionHelper',
|
|
|
|
'ng-context-menu',
|
|
|
|
'ngSanitize',
|
|
|
|
'ipCookie',
|
|
|
|
'ErrorCatcher',
|
|
|
|
'localStorage',
|
|
|
|
'sessionStorage',
|
|
|
|
'ngTagsInput',
|
|
|
|
'ui.select'
|
|
|
|
])
|
|
|
|
.config(function($qProvider, $httpProvider, uiSelectConfig) {
|
|
|
|
$qProvider.errorOnUnhandledRejections(false)
|
|
|
|
uiSelectConfig.spinnerClass = 'fa fa-refresh ui-select-spin'
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
return __guard__(
|
|
|
|
typeof MathJax !== 'undefined' && MathJax !== null
|
|
|
|
? MathJax.Hub
|
|
|
|
: undefined,
|
|
|
|
x =>
|
|
|
|
x.Config({
|
|
|
|
messageStyle: 'none',
|
|
|
|
imageFont: null,
|
|
|
|
'HTML-CSS': {
|
|
|
|
availableFonts: ['TeX'],
|
|
|
|
// MathJax's automatic font scaling does not work well when we render math
|
|
|
|
// that isn't yet on the page, so we disable it and set a global font
|
|
|
|
// scale factor
|
|
|
|
scale: 110,
|
|
|
|
matchFontHeight: false
|
|
|
|
},
|
|
|
|
TeX: {
|
|
|
|
equationNumbers: { autoNumber: 'AMS' },
|
|
|
|
useLabelIDs: false
|
|
|
|
},
|
|
|
|
skipStartupTypeset: true,
|
|
|
|
tex2jax: {
|
|
|
|
processEscapes: true,
|
|
|
|
// Dollar delimiters are added by the mathjax directive
|
|
|
|
inlineMath: [['\\(', '\\)']],
|
|
|
|
displayMath: [['$$', '$$'], ['\\[', '\\]']]
|
|
|
|
}
|
|
|
|
})
|
2018-11-05 05:06:39 -05:00
|
|
|
)
|
2020-05-19 05:02:56 -04:00
|
|
|
})
|
|
|
|
|
2020-10-30 08:33:25 -04:00
|
|
|
App.run(($rootScope, $templateCache) => {
|
|
|
|
const usersEmailElement = document.getElementById('ol-usersEmail')
|
|
|
|
$rootScope.usersEmail = usersEmailElement && usersEmailElement.content
|
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
// 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',
|
|
|
|
'<div class="ui-select-match" ng-hide="$select.open && $select.searchEnabled" ng-disabled="$select.disabled" ng-class="{\'btn-default-focus\':$select.focus}"><span tabindex="-1" class="btn btn-default form-control ui-select-toggle" aria-label="{{ $select.baseTitle }} activate" ng-disabled="$select.disabled" ng-click="$select.activate()" style="outline: 0;"><span ng-show="$select.isEmpty()" class="ui-select-placeholder text-muted">{{$select.placeholder}}</span> <span ng-hide="$select.isEmpty()" class="ui-select-match-text pull-left" ng-class="{\'ui-select-allow-clear\': $select.allowClear && !$select.isEmpty()}" ng-transclude=""></span> <i class="caret pull-right" ng-click="$select.toggle($event)"></i> <a ng-show="$select.allowClear && !$select.isEmpty() && ($select.disabled !== true)" aria-label="{{ $select.baseTitle }} clear" style="margin-right: 10px" ng-click="$select.clear($event)" class="btn btn-xs btn-link pull-right"><i class="fa fa-times" aria-hidden="true"></i></a></span></div>'
|
2018-11-05 05:06:39 -05:00
|
|
|
)
|
2020-10-30 08:33:25 -04:00
|
|
|
})
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
const sl_debugging =
|
|
|
|
__guard__(window.location != null ? window.location.search : undefined, x =>
|
|
|
|
x.match(/debug=true/)
|
|
|
|
) != null
|
|
|
|
var sl_console_last_log = null
|
|
|
|
window.sl_debugging = sl_debugging // make a global flag for debugging code
|
|
|
|
window.sl_console = {
|
|
|
|
log(...args) {
|
|
|
|
if (sl_debugging) {
|
|
|
|
sl_console_last_log = null
|
|
|
|
return console.log(...Array.from(args || []))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
logOnce(...args) {
|
|
|
|
if (sl_debugging && args[0] !== sl_console_last_log) {
|
|
|
|
sl_console_last_log = args[0]
|
|
|
|
return console.log(...Array.from(args || []))
|
2018-11-05 05:06:39 -05:00
|
|
|
}
|
|
|
|
}
|
2020-05-19 05:02:56 -04:00
|
|
|
}
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
export default App
|
2018-11-05 05:06:39 -05:00
|
|
|
|
|
|
|
function __guard__(value, transform) {
|
|
|
|
return typeof value !== 'undefined' && value !== null
|
|
|
|
? transform(value)
|
|
|
|
: undefined
|
|
|
|
}
|