mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
Move cancelling of idleCallbacks from PDFViewerApplication.close
and into its own helper method
Since the `close` method has become quite large, this small re-factoring shouldn't hurt.
This commit is contained in:
parent
7ce6634c51
commit
8d72981c18
1 changed files with 15 additions and 4 deletions
19
web/app.js
19
web/app.js
|
@ -763,6 +763,19 @@ const PDFViewerApplication = {
|
|||
document.title = title;
|
||||
},
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
_cancelIdleCallbacks() {
|
||||
if (!this._idleCallbacks.size) {
|
||||
return;
|
||||
}
|
||||
for (const callback of this._idleCallbacks) {
|
||||
window.cancelIdleCallback(callback);
|
||||
}
|
||||
this._idleCallbacks.clear();
|
||||
},
|
||||
|
||||
/**
|
||||
* Closes opened PDF document.
|
||||
* @returns {Promise} - Returns the promise, which is resolved when all
|
||||
|
@ -799,10 +812,8 @@ const PDFViewerApplication = {
|
|||
this._contentLength = null;
|
||||
this.triggerDelayedFallback = null;
|
||||
this._saveInProgress = false;
|
||||
for (const callback of this._idleCallbacks) {
|
||||
window.cancelIdleCallback(callback);
|
||||
}
|
||||
this._idleCallbacks.clear();
|
||||
|
||||
this._cancelIdleCallbacks();
|
||||
|
||||
if (this._scriptingInstance) {
|
||||
const { scripting, events } = this._scriptingInstance;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue