浏览代码

Fix bug with preview image absolute URLs.

pull/318/head
Matthew Petroff 8 年前
父节点
当前提交
a5d01c70bb
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. +1
    -2
      src/js/pannellum.js

+ 1
- 2
src/js/pannellum.js 查看文件

@@ -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) + "')";


正在加载...
取消
保存