mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fix #13335. Remove "use strict".
This commit is contained in:
parent
1923da8314
commit
7adee6c4da
@ -4,7 +4,6 @@
|
|||||||
"newcap": false,
|
"newcap": false,
|
||||||
"quotmark": "double",
|
"quotmark": "double",
|
||||||
"regexdash": true,
|
"regexdash": true,
|
||||||
"strict": true,
|
|
||||||
"trailing": true,
|
"trailing": true,
|
||||||
"undef": true,
|
"undef": true,
|
||||||
"unused": true,
|
"unused": true,
|
||||||
|
@ -12,4 +12,9 @@
|
|||||||
* Date: @DATE
|
* Date: @DATE
|
||||||
*/
|
*/
|
||||||
(function( window, undefined ) {
|
(function( window, undefined ) {
|
||||||
"use strict";
|
|
||||||
|
// Can't do this because several apps including ASP.NET trace
|
||||||
|
// the stack via arguments.caller.callee and Firefox dies if
|
||||||
|
// you try to trace through "use strict" call chains. (#13335)
|
||||||
|
// Support: Firefox 18+
|
||||||
|
//"use strict";
|
||||||
|
Loading…
Reference in New Issue
Block a user