Browse Source

Merge pull request #7652 from Snuffleupagus/resize-event-handler-prevent-error-before-eventBus-initialized

Prevent errors if the 'resize' event is fired before the `eventBus` has been initialized
Yury Delendik 9 years ago committed by GitHub
parent
commit
431af8cf85
  1. 3
      web/app.js

3
web/app.js

@ -1803,6 +1803,9 @@ function webViewerUpdateViewarea(e) { @@ -1803,6 +1803,9 @@ function webViewerUpdateViewarea(e) {
}
window.addEventListener('resize', function webViewerResize(evt) {
if (!PDFViewerApplication.eventBus) {
return;
}
PDFViewerApplication.eventBus.dispatch('resize');
});

Loading…
Cancel
Save