aboutsummaryrefslogtreecommitdiffstats
path: root/src/deferred/exceptionHook.js
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2016-03-23 15:03:06 +0100
committerMichał Gołębiowski <m.goleb@gmail.com>2016-03-30 23:45:17 +0200
commit6072d150d61655ec07f714e1d58a0bd7baa5ec3f (patch)
tree97ebfcd10460b6333d8429c6b2e255807409d15e /src/deferred/exceptionHook.js
parent693f1b537b0a19cda8b7e8f5379bffa5351b8a6e (diff)
downloadjquery-6072d150d61655ec07f714e1d58a0bd7baa5ec3f.tar.gz
jquery-6072d150d61655ec07f714e1d58a0bd7baa5ec3f.zip
Docs: Update support comments to follow the new syntax
The changes follow the spec proposed in: https://github.com/jquery/contribute.jquery.org/issues/95#issuecomment-69379197
Diffstat (limited to 'src/deferred/exceptionHook.js')
-rw-r--r--src/deferred/exceptionHook.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deferred/exceptionHook.js b/src/deferred/exceptionHook.js
index 652cc7d64..99d2819bf 100644
--- a/src/deferred/exceptionHook.js
+++ b/src/deferred/exceptionHook.js
@@ -9,7 +9,7 @@ var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
jQuery.Deferred.exceptionHook = function( error, stack ) {
- // Support: IE9 only
+ // Support: IE 8 - 9 only
// Console exists when dev tools are open, which can happen at any time
if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {
window.console.warn( "jQuery.Deferred exception: " + error.message, stack );