Closed markhealey closed 10 years ago
Update: This is specific to version 1.3.*
. Anything < 1.3.0
is unaffected.
We believe we have this issue resolved and are following up with internal testing.
Review the commits for details.
The solution for the issue was to make sure that IE10 does not use onreadystatechange. See https://github.com/OpenF2/F2/commit/f64df73065508b1cf8b9a6729845e1be9a8c8e07
Resolved in 1.3.2. Closing.
This also fixed IE 11.
Thanks @ryanolsen, good to know!
@markitondemand discovered an issue with the IE10 browser where F2's internal script loader is reporting scripts are loaded & resolved before they're actually loaded & resolved. After some research, it appears IE10 fires the
readyState == 'complete'
event and also fires thereadyState == 'interactive'
event which is different than how IE6-9 did it and could be the source of the problem.We're working on the fix in the
scriptloader
branch.