mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
Adding a flag for compatability mode for msie
This commit is contained in:
parent
975a408f15
commit
863eff1755
14
bowser.js
14
bowser.js
@ -41,7 +41,19 @@
|
||||
|
||||
if (ie) return {
|
||||
msie: t
|
||||
, version: ua.match(/msie (\d+(\.\d+)?);/i)[1]
|
||||
, version: (function(ua) {
|
||||
switch (ua.match(/Trident\/(\d+(\.\d+)?)/i)[1]) {
|
||||
case '6.0': //Trident 6.0 maps to IE 10
|
||||
return '10.0'
|
||||
case '5.0': //Trident 5.0 maps to IE 9
|
||||
return '9.0'
|
||||
case '4.0': //Trident 4.0 maps to IE 8
|
||||
return '8.0'
|
||||
default: //Trident not present reverts back to IE 7 or below
|
||||
return '7.0'
|
||||
}
|
||||
})(ua)
|
||||
, compatability: ua.indexOf("MSIE 7.0") > -1
|
||||
}
|
||||
if (chrome) return {
|
||||
webkit: t
|
||||
|
Loading…
Reference in New Issue
Block a user