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 are intermittently seeing this error in our logs using v3.5.14. It has been seen on desktop Chrome, iOS and Android.
I have tracked it down to the settings[iframeId].firstRun in this function:
function checkReset(){
// Reduce scope of firstRun to function, because IE8's JS execution
// context stack is borked and this value gets externally
// changed midway through running this function!!!
var
firstRun = settings[iframeId].firstRun,
resetRequertMethod = settings[iframeId].heightCalculationMethod in resetRequiredMethods;
if (!firstRun && resetRequertMethod){
resetIFrame({iframe:iframe, height:0, width:0, type:'init'});
}
}
The text was updated successfully, but these errors were encountered:
We are intermittently seeing this error in our logs using v3.5.14. It has been seen on desktop Chrome, iOS and Android.
I have tracked it down to the
settings[iframeId].firstRun
in this function:The text was updated successfully, but these errors were encountered: