Page 1 of 1
IAK / ADDT & IE9
Posted: 2011-03-21 18:07
by Hellkeeper
Hello,
seems like the IAK / ADDT Tools are completely incompatible with IE9 ... anyone else noticed this?
Tried to get it working with IE9 - but no luck so far ... maybe some more advanced JS coder can hunt down the errors ...
Bye
Andreas
Re: IAK / ADDT & IE9
Posted: 2011-03-22 13:39
by Hellkeeper
was able to fix one of the biggest problems ...
/nxt/scripts/list.js - line 1026 - 1029
orig:
Code: Select all
1026 try {
1027 delete object[prop];
1028 object[prop] = null;
1029 }
fixed:
Code: Select all
1026 try {
1027 if(object[prop]!=null && typeof prop == "object"){
1028 delete object[prop];
1029 object[prop] = null;
1030 }
1031 }
Hope this inflicts no other problems ... but I guess it should be safe ...
Maybe this helps some of you!
Re: IAK / ADDT & IE9
Posted: 2011-03-22 17:29
by Hellkeeper
can't edit my previous post?!?! anyway - please forget first approach ... guess the better one is this:
/nxt/scripts/list.js - line 1057 - 1059
orig:
Code: Select all
1057 if (document.all) {
1058 nullifyProperties(window);
1059 }
modified:
Code: Select all
1057 if (document.all) {
1058 if(is.ie && is.v == 9){
1059 } else {
1060 nullifyProperties(window);
1061 }
1061 }
Not sure if there are any other problems if I don't execute nullifyProperties() on IE9 ... but so far I did not notice any ...