Rank: Member
Groups: Member
Joined: 7/26/2005(UTC) Posts: 9
|
If Image Uploader is embedded with support for ActiveX and Java, it does not work with the default install for Opera. By default Opera identifies its self as MSIE 6.0. Therefore Image Uploader will try to embed the ActiveX version instead of using the Java version. A couple lines of Javascript in the iuembed.js file will fix the problem. In the writeHTML function you could add the following code to identify Opera. As you see below you will want to add the code after the isWinIE check: Code:var isWinIE=(a.indexOf("msie")!=-1)&&(a.indexOf("win")!=-1);
// Check if Opera - because Opera can report as IE
if (navigator.userAgent.indexOf("Opera")!=-1) {
isWinIE = false;
}
Edited by user Thursday, February 14, 2008 7:50:11 PM(UTC)
| Reason: Not specified
|
|
|
|
Rank: Advanced Member
Groups: Member, Administration, Moderator Joined: 7/28/2003(UTC) Posts: 1,659
Thanks: 5 times Was thanked: 76 time(s) in 74 post(s)
|
Hello, Thank you for your bug report. Checking for Opera was added in iuembed.js script which is shipped with Image Uploader 1.1: Code: this.writeHtml=function(){
var a=navigator.userAgent.toLowerCase();
var isOpera=(a.indexOf("opera")!=-1);
var isWinIE=(a.indexOf("msie")!=-1)&&(a.indexOf("win")!=-1)&&!isOpera;
var isSafari=(a.indexOf("safari")!=-1);
//Other code....
}
Image Uploader 1.1 was released in the end of last week and you can download it at its usual place. Edited by user Thursday, February 14, 2008 7:50:00 PM(UTC)
| Reason: Not specified |
Best regards, Fedor Skvortsov
|
|
|
|
Rank: Member
Groups: Member
Joined: 7/26/2005(UTC) Posts: 9
|
|
|
|
|
Rank: Advanced Member
Groups: Member, Administration, Moderator Joined: 7/28/2003(UTC) Posts: 1,659
Thanks: 5 times Was thanked: 76 time(s) in 74 post(s)
|
Hello Josh, Thank you for you remark. I have updated our online demo. |
Best regards, Fedor Skvortsov
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.