Skip to content

Commit c309b95

Browse files
committed
Misc: Adjust comments & docs to dropping IE<8 in jQuery Compat
1 parent e81b258 commit c309b95

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In the spirit of open source software development, jQuery always encourages comm
1414
Environments in which to use jQuery
1515
--------------------------------------
1616

17-
- [Browser support](http://jquery.com/browser-support/) differs between the master branch and the compat branch. Specifically, the master branch does not support legacy browsers such as IE6-8. The jQuery team continues to provide support for legacy browsers on the compat branch. Use the latest compat release if support for those browsers is required. See [browser support](http://jquery.com/browser-support/) for more info.
17+
- [Browser support](http://jquery.com/browser-support/) differs between the master branch and the compat branch. Specifically, the master branch does not support legacy browsers such as IE8. The jQuery team continues to provide support for legacy browsers on the compat branch. Use the latest compat release if support for those browsers is required. See [browser support](http://jquery.com/browser-support/) for more info.
1818
- To use jQuery in Node, browser extensions, and other non-browser environments, use only master branch releases given the name "jquery" rather than "jquery-compat". The compat branch does not support these environments.
1919

2020

src/attributes/val.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jQuery.extend({
9898
for ( ; i < max; i++ ) {
9999
option = options[ i ];
100100

101-
// IE6-9 doesn't update selected after form reset (#2551)
101+
// IE8-9 doesn't update selected after form reset (#2551)
102102
if ( ( option.selected || i === index ) &&
103103
// Don't return options that are disabled or in a disabled optgroup
104104
( support.optDisabled ?

test/unit/event.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2655,7 +2655,7 @@ if ( !(/firefox/i.test( window.navigator.userAgent )) ) {
26552655
$text = jQuery("#text1"),
26562656
$radio = jQuery("#radio1").trigger("focus");
26572657

2658-
// IE6-10 fire focus/blur events asynchronously; this is the resulting mess.
2658+
// IE8-10 fire focus/blur events asynchronously; this is the resulting mess.
26592659
// IE's browser window must be topmost for this to work properly!!
26602660
stop();
26612661
$radio[0].focus();

0 commit comments

Comments
 (0)