add detection for FF 3.6, thanks Peorth Yggdrasil
git-svn-id: file:///home/svn/framework3/trunk@9102 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
3dcc643bd6
commit
af901888d2
|
@ -123,7 +123,9 @@ function getVersion(){
|
||||||
// future. This works for multi/browser/mozilla_compareto against
|
// future. This works for multi/browser/mozilla_compareto against
|
||||||
// Firefox and Mozilla, so it's probably good enough for now.
|
// Firefox and Mozilla, so it's probably good enough for now.
|
||||||
ua_name = "#{clients::FF}";
|
ua_name = "#{clients::FF}";
|
||||||
if (String.trimRight) {
|
if (document.readyState) {
|
||||||
|
ua_version = "3.6";
|
||||||
|
} else if (String.trimRight) {
|
||||||
ua_version = "3.5";
|
ua_version = "3.5";
|
||||||
} else if (document.getElementsByClassName) {
|
} else if (document.getElementsByClassName) {
|
||||||
ua_version = "3";
|
ua_version = "3";
|
||||||
|
|
Loading…
Reference in New Issue