mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
Set mobile, ipad/iphone/android for Chrome running on those platforms.
This commit is contained in:
parent
88589615f4
commit
78b7ada2fa
@ -48,12 +48,26 @@
|
|||||||
, opera: t
|
, opera: t
|
||||||
, version: ua.match(webkitVersion) ? ua.match(webkitVersion)[1] : ua.match(/opr\/(\d+(\.\d+)?)/i)[1]
|
, version: ua.match(webkitVersion) ? ua.match(webkitVersion)[1] : ua.match(/opr\/(\d+(\.\d+)?)/i)[1]
|
||||||
}
|
}
|
||||||
if (chrome) return {
|
if (chrome) {
|
||||||
|
o = {
|
||||||
name: 'Chrome'
|
name: 'Chrome'
|
||||||
, webkit: t
|
, webkit: t
|
||||||
, chrome: t
|
, chrome: t
|
||||||
, version: ua.match(/(?:chrome|crios)\/(\d+(\.\d+)?)/i)[1]
|
, version: ua.match(/(?:chrome|crios)\/(\d+(\.\d+)?)/i)[1]
|
||||||
}
|
}
|
||||||
|
// Chrome for Android
|
||||||
|
if (android) {
|
||||||
|
o.android = t;
|
||||||
|
o.mobile = t;
|
||||||
|
}
|
||||||
|
// Chrome for iOS
|
||||||
|
if (iphone || ipad) {
|
||||||
|
o.ios = t;
|
||||||
|
o.iphone = iphone;
|
||||||
|
o.ipad = ipad;
|
||||||
|
}
|
||||||
|
return o
|
||||||
|
}
|
||||||
if (phantom) return {
|
if (phantom) return {
|
||||||
name: 'PhantomJS'
|
name: 'PhantomJS'
|
||||||
, webkit: t
|
, webkit: t
|
||||||
@ -81,13 +95,6 @@
|
|||||||
}
|
}
|
||||||
return o
|
return o
|
||||||
}
|
}
|
||||||
if (android) return {
|
|
||||||
name: 'Android'
|
|
||||||
, webkit: t
|
|
||||||
, android: t
|
|
||||||
, mobile: t
|
|
||||||
, version: (ua.match(webkitVersion) || ua.match(firefoxVersion))[1]
|
|
||||||
}
|
|
||||||
if (safari) return {
|
if (safari) return {
|
||||||
name: 'Safari'
|
name: 'Safari'
|
||||||
, webkit: t
|
, webkit: t
|
||||||
@ -105,6 +112,11 @@
|
|||||||
o.name = 'Firefox';
|
o.name = 'Firefox';
|
||||||
o.firefox = t;
|
o.firefox = t;
|
||||||
}
|
}
|
||||||
|
// Firefox for Android
|
||||||
|
if (android) {
|
||||||
|
o.android = t;
|
||||||
|
o.mobile = t;
|
||||||
|
}
|
||||||
return o
|
return o
|
||||||
}
|
}
|
||||||
if (seamonkey) return {
|
if (seamonkey) return {
|
||||||
@ -112,6 +124,14 @@
|
|||||||
, seamonkey: t
|
, seamonkey: t
|
||||||
, version: ua.match(/seamonkey\/(\d+(\.\d+)?)/i)[1]
|
, version: ua.match(/seamonkey\/(\d+(\.\d+)?)/i)[1]
|
||||||
}
|
}
|
||||||
|
// Android browser/webview (not Firefox/Chrome running on Android)
|
||||||
|
if (android) return {
|
||||||
|
name: 'Android'
|
||||||
|
, webkit: t
|
||||||
|
, android: t
|
||||||
|
, mobile: t
|
||||||
|
, version: (ua.match(webkitVersion) || ua.match(firefoxVersion))[1]
|
||||||
|
}
|
||||||
return {}
|
return {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user