diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/web/static/src/js/libs/pdfjs.js | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/web/static/src/js/libs/pdfjs.js')
| -rw-r--r-- | addons/web/static/src/js/libs/pdfjs.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/addons/web/static/src/js/libs/pdfjs.js b/addons/web/static/src/js/libs/pdfjs.js new file mode 100644 index 00000000..92c1e560 --- /dev/null +++ b/addons/web/static/src/js/libs/pdfjs.js @@ -0,0 +1,20 @@ +/* +* There is no changes to pdf.js in this file, but only a note about a change that has been done in it. +* +* In the module account_invoice_extract, the the code need to react to the 'pagerendered' event triggered by +* pdf.js. However in recent version of pdf.js, event are not visible outside of the library, except if the +* 'eventBusDispatchToDOM' has been set to true. +* +* We tried to set this option from outside of the library but without success, as our pdf viewer is in an iframe. +* There is no state of the iframe in which we can add an event listener to set the option. +* pdf.js has an event used to signal when we can set settings, called 'webviewerloaded'. +* This event is triggered in an EventListener attached to the 'DOMContentLoaded' event. +* So, to list options we had, we could: +* a) add an eventListener to the iframe document or window to react to 'webviewerloaded'. This doesn't work as +* document and windows are not the definitive ones and won't catche the event later. +* b) add an eventListener to the iframe to react to 'DOMContentLoaded', which doens't work too as our listener will be called +* after the pdf.js one. +* +* Finally the option was choosed to modify the default value of this option directly in pdf.js as no hook worked in the +* 'account_invoice_extract' module. +*/ |
