We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 961e1f3 commit 6410366Copy full SHA for 6410366
pdf2htmlEX/share/pdf2htmlEX.js.in
@@ -335,6 +335,19 @@ Viewer.prototype = {
335
336
this.initialize_radio_button();
337
this.render();
338
+
339
+ {
340
+ // deal with image reloading
341
+ var images = document.getElementsByTagName('img');
342
+ for (var i = 0; i < images.length; i++) {
343
+ images[i].addEventListener('error', function() {
344
+ setTimeout(function() {
345
+ images[i].src = images[i].src;
346
+ }, 1000);
347
+ });
348
349
+ }
350
351
},
352
353
/*
0 commit comments