You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a viewer with data-lazyload (or lazyload) set is not yet loaded and it's updated instead by calling window.CI360.update("tw-360-1"), this causes to add a 360 icon to it, which then gets added again after it loads causing a duplicate icon, and the second one does not get deleted.
If a viewer with
data-lazyload
(orlazyload
) set is not yet loaded and it's updated instead by callingwindow.CI360.update("tw-360-1")
, this causes to add a 360 icon to it, which then gets added again after it loads causing a duplicate icon, and the second one does not get deleted.I believe this is caused by
js-cloudimage-360-view/src/ci360.service.js
Line 1072 in 65f08fd
which in turn creates the icon here
js-cloudimage-360-view/src/ci360.service.js
Lines 1333 to 1344 in 65f08fd
This could be easily solved by checking
isReady()
before updating:js-cloudimage-360-view/src/ci360.service.js
Lines 85 to 92 in 65f08fd
The text was updated successfully, but these errors were encountered: