We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb67571 commit 2af1538Copy full SHA for 2af1538
grunt.js
@@ -12,6 +12,8 @@ var child_process = require("child_process");
12
13
module.exports = function( grunt ) {
14
15
+ "use strict";
16
+
17
// readOptionalJSON
18
// by Ben Alman
19
// https://gist.github.com/2876125
src/ajax/xhr.js
@@ -150,7 +150,7 @@ if ( jQuery.support.ajax ) {
150
// on any attempt to access responseText (#11426)
151
try {
152
responses.text = xhr.responseText;
153
- } catch( _ ) {
+ } catch( e ) {
154
}
155
156
// Firefox throws an exception when accessing
0 commit comments