Force PDF's to show at page width.

master
Pacman Ghost 3 years ago
parent 4ddef37cef
commit 9e25aeeeff
  1. 4
      asl_rulebook2/webapp/static/ContentPane.js

@ -228,6 +228,10 @@ gMainApp.component( "content-doc", {
url += "#nameddest=" + this.ruleid ;
else if ( this.pageNo )
url += "#page=" + this.pageNo ;
// FUDGE! Firefox's "pdfjs.defaultDefaultZoom" doesn't work inside an iframe :-/, so we force
// the PDF to show at page width here.
// NOTE: The syntax is, indeed, &-separated values in the anchor :-/
url += (url.indexOf("#") > 0 ? "&" : "#") + "zoom=FitH" ;
return url ;
}

Loading…
Cancel
Save