mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 23:37:19 +00:00
avoid race condition loading underscore
make underscore.coffee angular module depend on libs, which depends on underscore-1.3.3 Have avoided adding an extra dependency on underscore itself so that the version number is not duplicated. We could have a single definition of underscore in the requirejs config, to keep the version number in one place.
This commit is contained in:
parent
8d092fc84d
commit
24b2844ece
1 changed files with 5 additions and 2 deletions
|
@ -1,2 +1,5 @@
|
|||
angular.module('underscore', []).factory '_', ->
|
||||
return window._
|
||||
define [
|
||||
"libs"
|
||||
], () ->
|
||||
angular.module('underscore', []).factory '_', ->
|
||||
return window._
|
||||
|
|
Loading…
Reference in a new issue