Fix #13335. Remove "use strict".

This commit is contained in:
Dave Methvin 2013-02-01 17:17:39 -05:00
parent 115143b198
commit 0e2977583c
2 changed files with 6 additions and 2 deletions

View File

@ -4,7 +4,6 @@
"newcap": false,
"quotmark": "double",
"regexdash": true,
"strict": true,
"trailing": true,
"undef": true,
"unused": true,

View File

@ -12,4 +12,9 @@
* Date: @DATE
*/
(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";