Parcourir la source

Fix bug in last commit.

While the last commit prevented a race condition, it also broke the
`updateOnce` function.
pull/1140/head
Matthew Petroff il y a 1 an
Parent
révision
3d271c83d5
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. +4
    -1
      src/js/pannellum.js

+ 4
- 1
src/js/pannellum.js Voir le fichier

@@ -3075,7 +3075,10 @@ this.setUpdate = function(bool) {
*/
this.updateOnce = function() {
updateOnce = true;
this.setUpdate(true);
if (renderer === undefined)
onImageLoad();
else
animateInit();
return this;
};



Chargement…
Annuler
Enregistrer