From 0e2977583c0455eda940a28b2499cad2cbf24ee4 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Fri, 1 Feb 2013 17:17:39 -0500 Subject: Fix #13335. Remove "use strict". --- src/intro.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/intro.js') diff --git a/src/intro.js b/src/intro.js index a3683b411..c9b1dcdad 100644 --- a/src/intro.js +++ b/src/intro.js @@ -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"; -- cgit v1.2.3