]> source.dussan.org Git - jquery.git/commitdiff
Fix #13335. Remove "use strict".
authorDave Methvin <dave.methvin@gmail.com>
Fri, 1 Feb 2013 22:17:39 +0000 (17:17 -0500)
committerDave Methvin <dave.methvin@gmail.com>
Fri, 1 Feb 2013 22:17:39 +0000 (17:17 -0500)
src/.jshintrc
src/intro.js

index 72a58de2ea12eab277afbf5124b4698dc697d907..240302db4834f1aac05ada7612fa3e95bfe47a2a 100644 (file)
@@ -4,7 +4,6 @@
        "newcap": false,
        "quotmark": "double",
        "regexdash": true,
-       "strict": true,
        "trailing": true,
        "undef": true,
        "unused": true,
index a3683b4116a4f499c5b8cb16819163b539d9c3df..c9b1dcdade9bc5a826aa1a733f8f2596b5dc6c7c 100644 (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";