mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Fix incorrectly named var and remove unneccessary semicolon
This commit is contained in:
parent
d0b64b317f
commit
963a14b33c
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ define [
|
|||
timeSinceLastCompile = Date.now() - $scope.recompiledAt
|
||||
# If time is non-monotonic, assume that the user's system clock has been
|
||||
# changed and continue with recompile
|
||||
isTimeNonMonotonic = timeSinceLastPoll < 0;
|
||||
isTimeNonMonotonic = timeSinceLastCompile < 0
|
||||
|
||||
if isTimeNonMonotonic || timeSinceLastCompile >= AUTO_COMPILE_TIMEOUT
|
||||
if (!ide.$scope.hasLintingError)
|
||||
|
|
Loading…
Reference in a new issue