Преглед изворни кода

Fix fullscreen in Safari (fixes #155).

pull/160/head
Matthew Petroff пре 8 година
родитељ
комит
d1615f4b6a
1 измењених фајлова са 8 додато и 4 уклоњено
  1. +8
    -4
      src/js/pannellum.js

+ 8
- 4
src/js/pannellum.js Прегледај датотеку

@@ -1111,10 +1111,10 @@ function keyRepeat() {
* @private
*/
function onDocumentResize() {
// Resize panorama renderer
renderer.resize();
animateInit();
// Resize panorama renderer (moved to onFullScreenChange)
//renderer.resize();
//animateInit();
// Kludge to deal with WebKit regression: https://bugs.webkit.org/show_bug.cgi?id=93525
onFullScreenChange();
}
@@ -1684,6 +1684,10 @@ function onFullScreenChange() {
controls.fullscreen.classList.remove('pnlm-fullscreen-toggle-button-active');
fullscreenActive = false;
}

// Resize renderer (deal with browser quirks and fixes #155)
renderer.resize();
animateInit();
}

/**


Loading…
Откажи
Сачувај