Sha256: b9c06a249a1fd37a77098959cee3ade91a796831b11bbb4fd86b23f62269ba31

Contents?: true

Size: 1.09 KB

Versions: 25

Compression:

Stored size: 1.09 KB

Contents

/*! jQuery Browser - v0.1.0 - 3/23/2012
* https://github.com/jquery/jquery-browser
* Copyright (c) 2012 John Resig; Licensed MIT */

(function( jQuery ) {
	var matched,
		userAgent = navigator.userAgent || "";

	// Use of jQuery.browser is frowned upon.
	// More details: http://api.jquery.com/jQuery.browser
	// jQuery.uaMatch maintained for back-compat
	jQuery.uaMatch = function( ua ) {
		ua = ua.toLowerCase();

		var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
			/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
			/(opera)(?:.*version)?[ \/]([\w.]+)/.exec( ua ) ||
			/(msie) ([\w.]+)/.exec( ua ) ||
			ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+))?/.exec( ua ) ||
			[];

		return {
			browser: match[ 1 ] || "",
			version: match[ 2 ] || "0"
		};
	};

	matched = jQuery.uaMatch( userAgent );

	jQuery.browser = {};

	if ( matched.browser ) {
		jQuery.browser[ matched.browser ] = true;
		jQuery.browser.version = matched.version;
	}

	// Deprecated, use jQuery.browser.webkit instead
	// Maintained for back-compat only
	if ( jQuery.browser.webkit ) {
		jQuery.browser.safari = true;
	}

}( jQuery ));

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
social_stream-2.2.2 base/vendor/assets/javascripts/jquery.browser.js
social_stream-base-2.2.2 vendor/assets/javascripts/jquery.browser.js
social_stream-2.2.1 base/vendor/assets/javascripts/jquery.browser.js
social_stream-base-2.2.1 vendor/assets/javascripts/jquery.browser.js
social_stream-2.2.0 base/vendor/assets/javascripts/jquery.browser.js
social_stream-base-2.2.0 vendor/assets/javascripts/jquery.browser.js
social_stream-2.1.1 base/vendor/assets/javascripts/jquery.browser.js
social_stream-2.1.0 base/vendor/assets/javascripts/jquery.browser.js
social_stream-base-2.1.0 vendor/assets/javascripts/jquery.browser.js
social_stream-2.0.4 base/vendor/assets/javascripts/jquery.browser.js
social_stream-base-2.0.4 vendor/assets/javascripts/jquery.browser.js
social_stream-2.0.3 base/vendor/assets/javascripts/jquery.browser.js
social_stream-base-2.0.3 vendor/assets/javascripts/jquery.browser.js
social_stream-2.0.2 base/vendor/assets/javascripts/jquery.browser.js
social_stream-base-2.0.2 vendor/assets/javascripts/jquery.browser.js
social_stream-2.0.1 base/vendor/assets/javascripts/jquery.browser.js
social_stream-base-2.0.1 vendor/assets/javascripts/jquery.browser.js
social_stream-2.0.0 base/vendor/assets/javascripts/jquery.browser.js
social_stream-base-2.0.0 vendor/assets/javascripts/jquery.browser.js
social_stream-2.0.0.beta3 base/vendor/assets/javascripts/jquery.browser.js