git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51283d9
)
Name the try/catch arg to satisfy JSLint - thanks to @rwldrn in 873c28425fb64fdb48cfa...
author
jeresig
<jeresig@gmail.com>
Sat, 9 Oct 2010 16:26:44 +0000
(12:26 -0400)
committer
jeresig
<jeresig@gmail.com>
Sat, 9 Oct 2010 16:26:44 +0000
(12:26 -0400)
src/ajax.js
patch
|
blob
|
history
diff --git
a/src/ajax.js
b/src/ajax.js
index
e615480
..
95e40ec
100644
(file)
--- a/
src/ajax.js
+++ b/
src/ajax.js
@@
-698,12
+698,12
@@
if ( window.ActiveXObject ) {
if ( window.location.protocol !== "file:" ) {
try {
return new window.XMLHttpRequest();
- } catch(e) {}
+ } catch(xhrError) {}
}
try {
return new window.ActiveXObject("Microsoft.XMLHTTP");
- } catch(e) {}
+ } catch(activeError) {}
};
}