Browse Source

Merge pull request #7273 from Snuffleupagus/issue-7270

Prevent "Prefixed Fullscreen API is deprecated." warnings in the MOZCENTRAL version (issue 7270)
Yury Delendik 9 years ago
parent
commit
d20002b6b1
  1. 4
      web/app.js

4
web/app.js

@ -415,6 +415,9 @@ var PDFViewerApplication = { @@ -415,6 +415,9 @@ var PDFViewerApplication = {
},
get supportsFullscreen() {
//#if MOZCENTRAL
// var support = document.fullscreenEnabled === true;
//#else
var doc = document.documentElement;
var support = !!(doc.requestFullscreen || doc.mozRequestFullScreen ||
doc.webkitRequestFullScreen || doc.msRequestFullscreen);
@ -425,6 +428,7 @@ var PDFViewerApplication = { @@ -425,6 +428,7 @@ var PDFViewerApplication = {
document.msFullscreenEnabled === false) {
support = false;
}
//#endif
if (support && pdfjsLib.PDFJS.disableFullscreen === true) {
support = false;
}

Loading…
Cancel
Save