소스 검색

Actually make sure preview image loads first.

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

+ 6
- 0
src/js/pannellum.js 파일 보기

@@ -775,6 +775,12 @@ function processOptions() {
}
document.body.style.backgroundImage = "url('" + p + "')";
document.body.style.backgroundSize = '100% 100%';
// Initialize a request to make sure the browser begins fetching the
// preview image.
var request = new XMLHttpRequest();
request.open('GET', p, false);
request.send();
}
// Process other options


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