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
			
			
									
									
						IAK / ADDT & IE9
- 
				Hellkeeper
 - Posts: 15
 - Joined: 2010-08-31 16:59
 
Re: IAK / ADDT & IE9
was able to fix one of the biggest problems ...
/nxt/scripts/list.js - line 1026 - 1029
orig:
fixed:
Hope this inflicts no other problems ... but I guess it should be safe ...
Maybe this helps some of you!
			
			
									
									
						/nxt/scripts/list.js - line 1026 - 1029
orig:
Code: Select all
1026   try {
1027       delete object[prop];
1028       object[prop] = null;
1029   }
Code: Select all
1026   try {
1027       if(object[prop]!=null && typeof prop == "object"){
1028          delete object[prop];
1029          object[prop] = null;
1030       }
1031   }
Maybe this helps some of you!
- 
				Hellkeeper
 - Posts: 15
 - Joined: 2010-08-31 16:59
 
Re: IAK / ADDT & IE9
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:
modified:
Not sure if there are any other problems if I don't execute nullifyProperties() on IE9 ... but so far I did not notice any ...
			
			
									
									
						/nxt/scripts/list.js - line 1057 - 1059
orig:
Code: Select all
1057     if (document.all) {
1058          nullifyProperties(window);
1059     }
Code: Select all
1057     if (document.all) {
1058          if(is.ie && is.v == 9){
1059          } else {
1060               nullifyProperties(window);
1061          }
1061     }

