aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax/parseXML.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ajax/parseXML.js')
-rw-r--r--src/ajax/parseXML.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax/parseXML.js b/src/ajax/parseXML.js
index acf7ab259..0bdc49a7c 100644
--- a/src/ajax/parseXML.js
+++ b/src/ajax/parseXML.js
@@ -11,7 +11,7 @@ jQuery.parseXML = function( data ) {
return null;
}
- // Support: IE 9 - 11 only
+ // Support: IE 9 - 11+
// IE throws on parseFromString with invalid input.
try {
xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );