Skip to content

Commit 0e29775

Browse files
committed
Fix #13335. Remove "use strict".
1 parent 115143b commit 0e29775

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/.jshintrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"newcap": false,
55
"quotmark": "double",
66
"regexdash": true,
7-
"strict": true,
87
"trailing": true,
98
"undef": true,
109
"unused": true,

src/intro.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,9 @@
1212
* Date: @DATE
1313
*/
1414
(function( window, undefined ) {
15-
"use strict";
15+
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

Comments
 (0)