Parcourir la source

Fix bug with preview image absolute URLs.

pull/318/head
Matthew Petroff il y a 8 ans
Parent
révision
a5d01c70bb
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. +1
    -2
      src/js/pannellum.js

+ 1
- 2
src/js/pannellum.js Voir le fichier

@@ -1793,9 +1793,8 @@ function processOptions() {
// panoramas
if ('preview' in config) {
var p = config.preview;
if (config.basePath) {
if (config.basePath && !absoluteURL(p))
p = config.basePath + p;
}
preview = document.createElement('div');
preview.className = 'pnlm-preview-img';
preview.style.backgroundImage = "url('" + encodeURI(p) + "')";


Chargement…
Annuler
Enregistrer