Hello Tero, glad I could help.
I might write up my custom configuration if I have some time. No need for payment, I'm happy to be able to contribute something back to this project :)
By the way, I've just found something else... while testing isSupported() on WinXP IE6 fp 6.0.21, I got "Line 1590 - '0' is null or not an object".
I fixed this by adding version to the return statement on line 1566:
I might write up my custom configuration if I have some time. No need for payment, I'm happy to be able to contribute something back to this project :)
By the way, I've just found something else... while testing isSupported() on WinXP IE6 fp 6.0.21, I got "Line 1590 - '0' is null or not an object".
I fixed this by adding version to the return statement on line 1566:
} catch(ee) {
if (version[0] == 6) { return version; }
}
... I haven't tested this thoroughly, though it looks like it should work...