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
var counter = {val: 0};
for (i = 0; i < self.loadedImages.length; i++) {
..
// notice that counter is global, because it is passed by reference!
.. self._getResizedImage(.., counter, ..) ..
..
}
to this
for (i = 0; i < self.loadedImages.length; i++) {
..
.. self._getResizedImage(.., {val: 0}, ..) ..
..
}
The text was updated successfully, but these errors were encountered:
Steps to reproduce the issue
What cause this
In this commit 755bab1 you change code:
to this
The text was updated successfully, but these errors were encountered: