diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-10-26 16:08:05 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-26 16:08:05 -0400 |
commit | 995eb1261e5e6bb57cad292a56911893d539472e (patch) | |
tree | f114284d561a6a05e9994f7f0bb51621c6251440 /ui | |
parent | 5bd19650a30cbfc2e7f75135e0ebf1788c4b9767 (diff) | |
download | jquery-ui-995eb1261e5e6bb57cad292a56911893d539472e.tar.gz jquery-ui-995eb1261e5e6bb57cad292a56911893d539472e.zip |
Core: Removed $.ui.ie6.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.core.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ui/jquery.ui.core.js b/ui/jquery.ui.core.js index 7b5590fc1..fadd42cad 100644 --- a/ui/jquery.ui.core.js +++ b/ui/jquery.ui.core.js @@ -239,7 +239,6 @@ $.support.selectstart = "onselectstart" in document.createElement( "div" ); (function() { var uaMatch = /msie ([\w.]+)/.exec( navigator.userAgent.toLowerCase() ) || []; $.ui.ie = uaMatch.length ? true : false; - $.ui.ie6 = parseFloat( uaMatch[ 1 ], 10 ) === 6; })(); $.fn.extend({ |