2011-09-26 23:58:18 +00:00
/ * !
* Bowser - a browser detector
* https : //github.com/ded/bowser
2013-08-16 20:03:14 +00:00
* MIT License | ( c ) Dustin Diaz 2013
2011-09-26 23:58:18 +00:00
* /
2013-08-16 20:03:14 +00:00
2011-09-26 23:58:18 +00:00
! function ( name , definition ) {
2013-09-13 12:00:17 +00:00
if ( typeof define === 'function' ) {
define ( definition ) ;
} else if ( typeof module !== 'undefined' && module . exports ) {
module . exports [ name ] = definition ( ) ;
} else {
this [ name ] = definition ( ) ;
}
2011-09-26 23:58:18 +00:00
} ( 'bowser' , function ( ) {
2011-04-27 22:14:35 +00:00
/ * *
* navigator . userAgent =>
* Chrome : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_7) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.57 Safari/534.24"
* Opera : "Opera/9.80 (Macintosh; Intel Mac OS X 10.6.7; U; en) Presto/2.7.62 Version/11.01"
* Safari : "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-us) AppleWebKit/533.21.1 (KHTML, like Gecko) Version/5.0.5 Safari/533.21.1"
* IE : "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)"
2013-08-16 19:58:39 +00:00
* IE >= 11 : "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; .NET4.0E; .NET4.0C; Media Center PC 6.0; rv:11.0) like Gecko"
2011-04-27 22:14:35 +00:00
* Firefox : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0) Gecko/20100101 Firefox/4.0"
2011-09-26 23:58:18 +00:00
* iPhone : "Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 4_3_2 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8H7 Safari/6533.18.5"
2011-11-17 03:39:43 +00:00
* iPad : "Mozilla/5.0 (iPad; U; CPU OS 4_3_2 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8H7 Safari/6533.18.5" ,
2011-09-26 23:58:18 +00:00
* Android : "Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; T-Mobile G2 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1"
2012-04-15 22:11:55 +00:00
* Touchpad : "Mozilla/5.0 (hp-tabled;Linux;hpwOS/3.0.5; U; en-US)) AppleWebKit/534.6 (KHTML, like Gecko) wOSBrowser/234.83 Safari/534.6 TouchPad/1.0"
2012-07-18 17:45:20 +00:00
* PhantomJS : "Mozilla/5.0 (Macintosh; Intel Mac OS X) AppleWebKit/534.34 (KHTML, like Gecko) PhantomJS/1.5.0 Safari/534.34"
2012-04-17 01:54:24 +00:00
* /
2011-04-27 22:14:35 +00:00
2013-09-13 12:08:52 +00:00
function detect ( ua ) {
var t = true
, ie = /(msie|trident)/i . test ( ua )
, chrome = /chrome/i . test ( ua )
, phantom = /phantom/i . test ( ua )
, safari = /safari/i . test ( ua ) && ! chrome && ! phantom
, iphone = /iphone/i . test ( ua )
, ipad = /ipad/i . test ( ua )
, touchpad = /touchpad/i . test ( ua )
, android = /android/i . test ( ua )
, opera = /opera/i . test ( ua ) || /opr/i . test ( ua )
, firefox = /firefox/i . test ( ua )
, gecko = /gecko\//i . test ( ua )
, seamonkey = /seamonkey\//i . test ( ua )
, webkitVersion = /version\/(\d+(\.\d+)?)/i
, firefoxVersion = /firefox\/(\d+(\.\d+)?)/i
, o ;
2011-04-27 22:14:35 +00:00
2013-09-13 12:00:17 +00:00
if ( ie ) {
2013-09-13 12:08:52 +00:00
o = {
2011-09-26 23:58:18 +00:00
msie : t
2013-08-16 19:58:39 +00:00
, version : ua . match ( /(msie |rv:)(\d+(\.\d+)?)/i ) [ 2 ]
2013-09-13 12:00:17 +00:00
} ;
} else if ( opera ) {
2013-09-13 12:08:52 +00:00
o = {
2013-08-16 19:58:39 +00:00
opera : t
, version : ua . match ( webkitVersion ) ? ua . match ( webkitVersion ) [ 1 ] : ua . match ( /opr\/(\d+(\.\d+)?)/i )
2013-09-13 12:00:17 +00:00
} ;
} else if ( chrome ) {
2013-09-13 12:08:52 +00:00
o = {
2011-09-26 23:58:18 +00:00
webkit : t
, chrome : t
, version : ua . match ( /chrome\/(\d+(\.\d+)?)/i ) [ 1 ]
2013-09-13 12:00:17 +00:00
} ;
} else if ( phantom ) {
2013-09-13 12:08:52 +00:00
o = {
2012-07-18 17:45:20 +00:00
webkit : t
, phantom : t
, version : ua . match ( /phantomjs\/(\d+(\.\d+)+)/i ) [ 1 ]
2013-09-13 12:00:17 +00:00
} ;
} else if ( touchpad ) {
return {
2012-04-15 22:11:55 +00:00
webkit : t
, touchpad : t
, version : ua . match ( /touchpad\/(\d+(\.\d+)?)/i ) [ 1 ]
2013-09-13 12:00:17 +00:00
} ;
} else if ( iphone || ipad ) {
2012-01-24 09:58:00 +00:00
o = {
2013-08-16 19:58:39 +00:00
webkit : t
, mobile : t
, ios : t
, iphone : iphone
, ipad : ipad
2013-09-13 12:00:17 +00:00
} ;
2012-01-24 09:58:00 +00:00
// WTF: version is not part of user agent in web apps
if ( webkitVersion . test ( ua ) ) {
2013-09-13 12:00:17 +00:00
o . version = ua . match ( webkitVersion ) [ 1 ] ;
2012-01-24 09:58:00 +00:00
}
2013-09-13 12:00:17 +00:00
} else if ( android ) {
2013-09-13 12:08:52 +00:00
o = {
2011-09-26 23:58:18 +00:00
webkit : t
, android : t
, mobile : t
2013-08-16 10:53:26 +00:00
, version : ( ua . match ( webkitVersion ) || ua . match ( firefoxVersion ) ) [ 1 ]
2013-09-13 12:00:17 +00:00
} ;
} else if ( safari ) {
2013-09-13 12:08:52 +00:00
o = {
2011-09-26 23:58:18 +00:00
webkit : t
, safari : t
, version : ua . match ( webkitVersion ) [ 1 ]
2013-09-13 12:00:17 +00:00
} ;
} else if ( gecko ) {
2012-01-24 09:58:00 +00:00
o = {
2013-08-16 19:58:39 +00:00
gecko : t
, mozilla : t
, version : ua . match ( firefoxVersion ) [ 1 ]
2013-09-13 12:00:17 +00:00
} ;
if ( firefox ) o . firefox = t ;
} else if ( seamonkey ) {
2013-09-13 12:08:52 +00:00
o = {
2011-11-17 03:39:43 +00:00
seamonkey : t
, version : ua . match ( /seamonkey\/(\d+(\.\d+)?)/i ) [ 1 ]
2013-09-13 12:00:17 +00:00
} ;
} else {
2013-09-13 12:08:52 +00:00
o = { } ;
2013-09-13 12:00:17 +00:00
}
2011-04-27 22:14:35 +00:00
2013-09-13 12:08:52 +00:00
// Graded Browser Support
// http://developer.yahoo.com/yui/articles/gbs
if ( ( o . msie && o . version >= 8 ) ||
( o . chrome && o . version >= 10 ) ||
( o . firefox && o . version >= 4.0 ) ||
( o . safari && o . version >= 5 ) ||
( o . opera && o . version >= 10.0 ) ) {
o . a = t ;
}
2011-05-10 16:50:28 +00:00
2013-09-13 12:08:52 +00:00
else if ( ( o . msie && o . version < 8 ) ||
( o . chrome && o . version < 10 ) ||
( o . firefox && o . version < 4.0 ) ||
( o . safari && o . version < 5 ) ||
( o . opera && o . version < 10.0 ) ) {
o . c = t ;
} else {
o . x = t ;
}
2011-05-10 16:50:28 +00:00
2013-09-13 12:08:52 +00:00
return o ;
2013-09-13 12:00:17 +00:00
}
2011-04-27 22:14:35 +00:00
2013-09-13 12:08:52 +00:00
/* Get our main bowser object from navigators user agent if present. */
var bowser = detect ( typeof navigator !== 'undefined' ? navigator . userAgent : '' ) ;
/ *
* Set our detect method to the main bowser object so we can
* reuse it to test other user agents .
* This is needed to implement future tests .
* /
bowser . _detect = detect ;
2013-09-13 12:00:17 +00:00
return bowser ;
2013-09-13 12:08:52 +00:00
} ) ;