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 115143b commit 0e29775Copy full SHA for 0e29775
src/.jshintrc
@@ -4,7 +4,6 @@
4
"newcap": false,
5
"quotmark": "double",
6
"regexdash": true,
7
- "strict": true,
8
"trailing": true,
9
"undef": true,
10
"unused": true,
src/intro.js
@@ -12,4 +12,9 @@
12
* Date: @DATE
13
*/
14
(function( window, undefined ) {
15
-"use strict";
+
16
+// Can't do this because several apps including ASP.NET trace
17
+// the stack via arguments.caller.callee and Firefox dies if
18
+// you try to trace through "use strict" call chains. (#13335)
19
+// Support: Firefox 18+
20
+//"use strict";
0 commit comments