Просмотр исходного кода

Actually make sure preview image loads first.

pull/26/head
Matthew Petroff 10 лет назад
Родитель
Сommit
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


Загрузка…
Отмена
Сохранить