Sfoglia il codice sorgente

Actually make sure preview image loads first.

pull/26/head
Matthew Petroff 10 anni fa
parent
commit
b2d8b19173
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  1. +6
    -0
      src/js/pannellum.js

+ 6
- 0
src/js/pannellum.js Vedi File

@@ -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


Caricamento…
Annulla
Salva