Ver código fonte

Add error for when panorama image isn't specified.

pull/101/head
Matthew Petroff 9 anos atrás
pai
commit
82d1bc4b4e
1 arquivos alterados com 5 adições e 0 exclusões
  1. +5
    -0
      src/js/pannellum.js

+ 5
- 0
src/js/pannellum.js Ver arquivo

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


Carregando…
Cancelar
Salvar