From 693f1b537b0a19cda8b7e8f5379bffa5351b8a6e Mon Sep 17 00:00:00 2001 From: Michał Gołębiowski Date: Wed, 23 Mar 2016 15:02:26 +0100 Subject: Docs: Update support comments related to IE All support comments were checked for Edge applicability. --- src/attributes/support.js | 4 ++-- src/attributes/val.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/attributes') diff --git a/src/attributes/support.js b/src/attributes/support.js index f93ba0181..16c8fcb82 100644 --- a/src/attributes/support.js +++ b/src/attributes/support.js @@ -14,11 +14,11 @@ define( [ // Default value for a checkbox should be "on" support.checkOn = input.value !== ""; - // Support: IE<=11+ + // Support: IE <=11 only // Must access selectedIndex to make default options select support.optSelected = opt.selected; - // Support: IE<=11+ + // Support: IE <=11 only // An input loses its value after becoming a radio input = document.createElement( "input" ); input.value = "t"; diff --git a/src/attributes/val.js b/src/attributes/val.js index 1338fcdf6..ace17040b 100644 --- a/src/attributes/val.js +++ b/src/attributes/val.js @@ -85,7 +85,7 @@ jQuery.extend( { return val != null ? val : - // Support: IE10-11+ + // Support: IE <=10 - 11 only // option.text throws exceptions (#14686, #14858) // Strip and collapse whitespace // https://html.spec.whatwg.org/#strip-and-collapse-whitespace -- cgit v1.2.3