Ver código fonte

Another check to make sure hot spot div exists before deleting it (#702).

pull/707/head
Matthew Petroff 5 anos atrás
pai
commit
34cb1a409e
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/js/pannellum.js

+ 1
- 1
src/js/pannellum.js Ver arquivo

@@ -1785,7 +1785,7 @@ function destroyHotSpots() {
for (var i = 0; i < hs.length; i++) {
var current = hs[i].div;
if (current) {
while(current.parentNode != renderContainer) {
while (current.parentNode && current.parentNode != renderContainer) {
current = current.parentNode;
}
renderContainer.removeChild(current);


Carregando…
Cancelar
Salvar