Skip to content

Commit

Permalink
Misc: Adjust comments & docs to dropping IE<8 in jQuery Compat
Browse files Browse the repository at this point in the history
  • Loading branch information
mgol committed Nov 4, 2014
1 parent e81b258 commit c309b95
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ In the spirit of open source software development, jQuery always encourages comm
Environments in which to use jQuery
--------------------------------------

- [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.
- [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.
- 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.


Expand Down
2 changes: 1 addition & 1 deletion src/attributes/val.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jQuery.extend({
for ( ; i < max; i++ ) {
option = options[ i ];

// IE6-9 doesn't update selected after form reset (#2551)
// IE8-9 doesn't update selected after form reset (#2551)
if ( ( option.selected || i === index ) &&
// Don't return options that are disabled or in a disabled optgroup
( support.optDisabled ?
Expand Down
2 changes: 1 addition & 1 deletion test/unit/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -2655,7 +2655,7 @@ if ( !(/firefox/i.test( window.navigator.userAgent )) ) {
$text = jQuery("#text1"),
$radio = jQuery("#radio1").trigger("focus");

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

0 comments on commit c309b95

Please sign in to comment.