소스 검색

Fix bug where fullscreen button was not displayed in IE.

pull/234/head
Matthew Petroff 8 년 전
부모
커밋
d5282e1fec
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/js/pannellum.js

+ 1
- 1
src/js/pannellum.js 파일 보기

@@ -193,7 +193,7 @@ controls.container.appendChild(controls.zoom);
controls.fullscreen = document.createElement('div');
controls.fullscreen.addEventListener('click', toggleFullscreen);
controls.fullscreen.className = 'pnlm-fullscreen-toggle-button pnlm-sprite pnlm-fullscreen-toggle-button-inactive pnlm-controls pnlm-control';
if (document.fullscreenEnabled || document.mozFullScreenEnabled || document.webkitFullscreenEnabled)
if (document.fullscreenEnabled || document.mozFullScreenEnabled || document.webkitFullscreenEnabled || document.msFullscreenEnabled)
controls.container.appendChild(controls.fullscreen);

// Device orientation toggle


불러오는 중...
취소
저장