Open GoogleCodeExporter opened 9 years ago
I had the same issue, and the same workaround seems to fix it.
Original comment by cortes...@gmail.com
on 12 May 2008 at 6:24
Same issue here, thank you for the workaround.
Original comment by bertrand...@gmail.com
on 27 May 2008 at 4:08
you can use this code for dectection instead:
...} else if (/\(KHTML, like Gecko\) Safari/i.test(UA)) {
this.isSafari = true;
this.isSupported = (platform.indexOf("mac") > -1);
} else if ((UA.indexOf("gecko") != -1) || (/\(KHTML, like Gecko\) Version\/(.+)
Safari/i.test(UA))) {
this.isGecko = true;
this.isSupported = true;
}
Original comment by andi.tri...@gmail.com
on 14 Jun 2008 at 6:35
This is still an issue in Safari 4.0.5
The above fix seems simple enough and is effective: this.isGecko = true;
Original comment by suomedi...@gmail.com
on 14 May 2010 at 12:40
Does anyone know which safari version needs the old code? I took a slightly
different
approach than andi - checking version number like this (see attachment).
Right now I'm going version >= 3 as you can see. I have 3.2 and the isGecko
approach
works there, so not sure when to cut this off.
Original comment by jonatan....@gmail.com
on 21 May 2010 at 8:14
Attachments:
Original issue reported on code.google.com by
willac...@gmail.com
on 14 Mar 2008 at 10:36