aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ie.js
blob: 1ce6a8450d575c196979dd2fa996beb93894385d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
( function( factory ) {
	if ( typeof define === "function" && define.amd ) {

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

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

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