mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
prevent exception when scrolling during rerender in pdfng
This commit is contained in:
parent
206e7db144
commit
863c8b9586
1 changed files with 5 additions and 2 deletions
|
@ -137,7 +137,8 @@ define [
|
|||
if visible
|
||||
# console.log 'found it', topPageIdx
|
||||
else
|
||||
console.log 'CANNOT FIND TOP PAGE'
|
||||
# console.log 'CANNOT FIND TOP PAGE'
|
||||
return
|
||||
|
||||
# console.log 'top page is', topPage.pageNum, topPage.elemTop, topPage.elemBottom, topPage
|
||||
top = topPage.elemTop
|
||||
|
@ -296,7 +297,9 @@ define [
|
|||
scope.scrollHandlerTimeout = null
|
||||
updateContainer()
|
||||
scope.$apply()
|
||||
scope.position = ctrl.getPdfPosition()
|
||||
newPosition = ctrl.getPdfPosition()
|
||||
if newPosition?
|
||||
scope.position = newPosition
|
||||
scope.$apply()
|
||||
|
||||
scope.$watch 'pdfSrc', (newVal, oldVal) ->
|
||||
|
|
Loading…
Reference in a new issue