base.js 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* eslint-disable
  2. camelcase,
  3. max-len,
  4. no-useless-escape,
  5. */
  6. // TODO: This file was created by bulk-decaffeinate.
  7. // Fix any style issues and re-enable lint.
  8. /*
  9. * decaffeinate suggestions:
  10. * DS101: Remove unnecessary use of Array.from
  11. * DS102: Remove unnecessary code created because of implicit returns
  12. * DS103: Rewrite code to no longer use __guard__
  13. * DS207: Consider shorter variations of null checks
  14. * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
  15. */
  16. import './utils/webpack-public-path'
  17. import './libraries'
  18. import './infrastructure/error-reporter'
  19. import './modules/recursionHelper'
  20. import './modules/errorCatcher'
  21. import './modules/localStorage'
  22. import './modules/sessionStorage'
  23. import getMeta from './utils/meta'
  24. const App = angular
  25. .module('OverleafApp', [
  26. 'ui.bootstrap',
  27. 'RecursionHelper',
  28. 'ngSanitize',
  29. 'ErrorCatcher',
  30. 'localStorage',
  31. 'sessionStorage',
  32. 'ui.select',
  33. ])
  34. .config([
  35. '$qProvider',
  36. 'uiSelectConfig',
  37. function ($qProvider, uiSelectConfig) {
  38. $qProvider.errorOnUnhandledRejections(false)
  39. uiSelectConfig.spinnerClass = 'fa fa-refresh ui-select-spin'
  40. },
  41. ])
  42. App.run([
  43. '$rootScope',
  44. '$templateCache',
  45. function ($rootScope, $templateCache) {
  46. $rootScope.usersEmail = getMeta('ol-usersEmail')
  47. // UI Select templates are hard-coded and use Glyphicon icons (which we don't import).
  48. // The line below simply overrides the hard-coded template with our own, which is
  49. // basically the same but using Font Awesome icons.
  50. $templateCache.put(
  51. 'bootstrap/match.tpl.html',
  52. '<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>'
  53. )
  54. },
  55. ])
  56. export default App