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
p.notify = function () {
for (var i = 0, l = this.subs.length; i < l; i++) {
this.subs[i].update()
}
}
The problem occurs at the setting a big amount of data to a single property (this.offer = offer) in a complex component.
Can't reproduce it in fiddle, but it looks like subs array changes its length while iterating it in notify.
Giving up on saving up subs length fixes the problem: