prevent exception when scrolling during rerender in pdfng

This commit is contained in:
Brian Gough 2014-12-08 15:32:05 +00:00
parent 206e7db144
commit 863c8b9586

View file

@ -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) ->