Hi,
I'm getting error when the test checks for old IE version:
/*@cc_on
@if (@_jscript_version <= 10)
isOldInternetExplorer = true;
@end
@*/
The error I'm getting is: Unable to get property 'init' of undefined or null reference
This can be fixed by putting variable identifier in front of isOldInternetExplorer So the working check would be looking like this:
/*@cc_on
@if (@_jscript_version <= 10)
var isOldInternetExplorer = true;
@end
@*/