Ver a proveniência

Fix 'setTimeout' when calling processNextTile

setTimeout(f(x), ms) executes function immediately and acts as if there is no setTimeout at all.
pull/398/head
Tortila90 há 7 anos
committed by GitHub
ascendente
cometimento
cf3b98eb35
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/js/libpannellum.js

+ 1
- 1
src/js/libpannellum.js Ver ficheiro

@@ -601,7 +601,7 @@ function Renderer(container) {
// Only process one tile per frame to improve responsiveness
for (i = 0; i < program.currentNodes.length; i++) {
if (!program.currentNodes[i].texture) {
setTimeout(processNextTile(program.currentNodes[i]), 0);
setTimeout(processNextTile, 0, program.currentNodes[i]);
break;
}
}


Carregando…
Cancelar
Guardar