aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ajax.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ajax.js b/src/ajax.js
index e61548068..95e40ecd2 100644
--- 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) {}
};
}