소스 검색

Add error for when panorama image isn't specified.

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

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

@@ -198,6 +198,7 @@ function init() {
div.innerHTML = "<!--[if lte IE 9]><i></i><![endif]-->";
if (div.getElementsByTagName("i").length == 1) {
anError();
return;
}
var i, p;
@@ -219,6 +220,10 @@ function init() {
}
panoImage = c;
} else {
if (config.panorama === undefined) {
anError('No panorama image was specified.');
return;
}
if (config.video === true) {
panoImage = document.createElement('video');
infoDisplay.load.lbox.style.display = 'block';


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