aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ie.js
blob: 1754b94a9f2ee1ad9a41f743bab56534f9c341cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
( function( factory ) {
	"use strict";

	if ( typeof define === "function" && define.amd ) {

		// AMD. Register as an anonymous module.
		define( [ "jquery", "./version" ], factory );
	} else {

		// Browser globals
		factory( jQuery );
	}
} )( function( $ ) {
"use strict";

// This file is deprecated
return $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
} );