IAK / ADDT & IE9

Any tips and tricks that has to with the ADDT that doesn't fit into one of the other categories
Hellkeeper
Posts: 15
Joined: 2010-08-31 16:59

IAK / ADDT & IE9

Post by Hellkeeper » 2011-03-21 18:07

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

Hellkeeper
Posts: 15
Joined: 2010-08-31 16:59

Re: IAK / ADDT & IE9

Post by Hellkeeper » 2011-03-22 13:39

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! ;-)

Hellkeeper
Posts: 15
Joined: 2010-08-31 16:59

Re: IAK / ADDT & IE9

Post by Hellkeeper » 2011-03-22 17:29

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 ...

Post Reply