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
We just upgraded to tessera 0.7 and found that the autorefresh stopped working.
We are using firefox 38.
I had a quick peak in the code but I am in no way a javascript expert but did find that in the refresh function line 6237 in tessera.js that 'this' does not point to the manager object but the actual window which doesn't have the 'current' object and as such skips the load function all together.
Hope that helps.
Jozef
The text was updated successfully, but these errors were encountered:
This was a leftover `this` scope issue from moving to es6 classes.
Passing a closure to `window.setInterval()` instead of `this.refresh`
fixes it.
Fixes issue #468
Hi,
We just upgraded to tessera 0.7 and found that the autorefresh stopped working.
We are using firefox 38.
I had a quick peak in the code but I am in no way a javascript expert but did find that in the refresh function line 6237 in tessera.js that 'this' does not point to the manager object but the actual window which doesn't have the 'current' object and as such skips the load function all together.
Hope that helps.
Jozef
The text was updated successfully, but these errors were encountered: