Fix #13335. Remove "use strict".

This commit is contained in:
Dave Methvin 2013-02-01 17:17:39 -05:00
parent 1923da8314
commit 7adee6c4da
2 changed files with 6 additions and 2 deletions

View File

@ -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,

View File

@ -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";