aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2014-11-04 16:16:36 +0100
committerMichał Gołębiowski <m.goleb@gmail.com>2014-11-04 16:16:36 +0100
commitc309b95756b83b60fadc369edb120db4520c364a (patch)
tree100044663e003bf314529069e16a38d0eab387f0
parente81b258ace257ba138022cf28374190623b0be5e (diff)
downloadjquery-c309b95756b83b60fadc369edb120db4520c364a.tar.gz
jquery-c309b95756b83b60fadc369edb120db4520c364a.zip
Misc: Adjust comments & docs to dropping IE<8 in jQuery Compat
-rw-r--r--README.md2
-rw-r--r--src/attributes/val.js2
-rw-r--r--test/unit/event.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 87727f8e4..1cbba3cd8 100644
--- a/README.md
+++ b/README.md
@@ -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.
diff --git a/src/attributes/val.js b/src/attributes/val.js
index 3130b56d1..f67afb156 100644
--- a/src/attributes/val.js
+++ b/src/attributes/val.js
@@ -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 ?
diff --git a/test/unit/event.js b/test/unit/event.js
index 1f08b4e95..8572c952b 100644
--- a/test/unit/event.js
+++ b/test/unit/event.js
@@ -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();