Skip to content

Commit

Permalink
Merge pull request #10959 from Snuffleupagus/rm-PrintService-body-att…
Browse files Browse the repository at this point in the history
…ribute

Remove the `data-pdfjsprinting` attribute on the `<body>` when destroying `FirefoxPrintService`/`PDFPrintService` instances (issue 10948)
  • Loading branch information
timvandermeij authored Jul 11, 2019
2 parents 478f056 + cd48f05 commit 6e594a8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
13 changes: 8 additions & 5 deletions web/firefox_print_service.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,18 +77,21 @@ function FirefoxPrintService(pdfDocument, pagesOverview, printContainer) {

FirefoxPrintService.prototype = {
layout() {
let pdfDocument = this.pdfDocument;
let printContainer = this.printContainer;
let body = document.querySelector('body');
const { pdfDocument, pagesOverview, printContainer, } = this;

const body = document.querySelector('body');
body.setAttribute('data-pdfjsprinting', true);

for (let i = 0, ii = this.pagesOverview.length; i < ii; ++i) {
composePage(pdfDocument, i + 1, this.pagesOverview[i], printContainer);
for (let i = 0, ii = pagesOverview.length; i < ii; ++i) {
composePage(pdfDocument, i + 1, pagesOverview[i], printContainer);
}
},

destroy() {
this.printContainer.textContent = '';

const body = document.querySelector('body');
body.removeAttribute('data-pdfjsprinting');
},
};

Expand Down
6 changes: 5 additions & 1 deletion web/pdf_print_service.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ PDFPrintService.prototype = {
layout() {
this.throwIfInactive();

let body = document.querySelector('body');
const body = document.querySelector('body');
body.setAttribute('data-pdfjsprinting', true);

let hasEqualPageSizes = this.pagesOverview.every(function(size) {
Expand Down Expand Up @@ -114,6 +114,10 @@ PDFPrintService.prototype = {
return;
}
this.printContainer.textContent = '';

const body = document.querySelector('body');
body.removeAttribute('data-pdfjsprinting');

if (this.pageStyleSheet) {
this.pageStyleSheet.remove();
this.pageStyleSheet = null;
Expand Down

0 comments on commit 6e594a8

Please sign in to comment.