[all] fix for win xp support
This commit is contained in:
parent
3d1e240d4f
commit
3d24f62284
|
@ -197,7 +197,7 @@
|
||||||
} else
|
} else
|
||||||
if (check(/windows\snt/i)) {
|
if (check(/windows\snt/i)) {
|
||||||
var re = /chrome\/(\d+)/i.exec(userAgent);
|
var re = /chrome\/(\d+)/i.exec(userAgent);
|
||||||
if (!!re[1] && !(re[1] > 49)) {
|
if (!!re && !!re[1] && !(re[1] > 49)) {
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
document.getElementsByTagName('body')[0].className += "winxp";
|
document.getElementsByTagName('body')[0].className += "winxp";
|
||||||
},0);
|
},0);
|
||||||
|
|
|
@ -196,7 +196,7 @@
|
||||||
} else
|
} else
|
||||||
if (check(/windows\snt/i)) {
|
if (check(/windows\snt/i)) {
|
||||||
var re = /chrome\/(\d+)/i.exec(userAgent);
|
var re = /chrome\/(\d+)/i.exec(userAgent);
|
||||||
if (!!re[1] && !(re[1] > 49)) {
|
if (!!re && !!re[1] && !(re[1] > 49)) {
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
document.getElementsByTagName('body')[0].className += "winxp";
|
document.getElementsByTagName('body')[0].className += "winxp";
|
||||||
},0);
|
},0);
|
||||||
|
|
|
@ -196,7 +196,7 @@
|
||||||
} else
|
} else
|
||||||
if (check(/windows\snt/i)) {
|
if (check(/windows\snt/i)) {
|
||||||
var re = /chrome\/(\d+)/i.exec(userAgent);
|
var re = /chrome\/(\d+)/i.exec(userAgent);
|
||||||
if (!!re[1] && !(re[1] > 49)) {
|
if (!!re && !!re[1] && !(re[1] > 49)) {
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
document.getElementsByTagName('body')[0].className += "winxp";
|
document.getElementsByTagName('body')[0].className += "winxp";
|
||||||
},0);
|
},0);
|
||||||
|
|
|
@ -195,7 +195,7 @@
|
||||||
} else
|
} else
|
||||||
if (check(/windows\snt/i)) {
|
if (check(/windows\snt/i)) {
|
||||||
var re = /chrome\/(\d+)/i.exec(userAgent);
|
var re = /chrome\/(\d+)/i.exec(userAgent);
|
||||||
if (!!re[1] && !(re[1] > 49)) {
|
if (!!re && !!re[1] && !(re[1] > 49)) {
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
document.getElementsByTagName('body')[0].className += "winxp";
|
document.getElementsByTagName('body')[0].className += "winxp";
|
||||||
},0);
|
},0);
|
||||||
|
|
Loading…
Reference in a new issue