diff open-web-challenges.js @ 20:1c1f74ba541a

Removed firebug lite fallback b/c it was messing up a lot and spamming modal alerts.
author Atul Varma <varmaa@toolness.com>
date Tue, 31 Mar 2009 09:36:12 -0700
parents c029286305e2
children f44ab359f4af
line wrap: on
line diff
--- a/open-web-challenges.js	Tue Mar 31 07:44:25 2009 -0700
+++ b/open-web-challenges.js	Tue Mar 31 09:36:12 2009 -0700
@@ -71,23 +71,5 @@
       OWC.load(challengeId);
     }
 
-    if ($('#_firebugConsole').length)
-      showChallenge();
-    else {
-      jQuery.getScript(
-        'firebug-lite.js',
-        function() {
-          if (window.firebug.version) {
-            firebug.init();
-            firebug.d.console.cmd.log(
-              ('Because Firebug wasn\'t detected, you are ' +
-               'now using Firebug lite. Unfortunately, this means that ' +
-               'some hints won\'t necessarily work for you, and you ' +
-               'may need to use some clever tricks to get through ' +
-               'some of the challenges.')
-            );
-          }
-          showChallenge();
-        });
-    }
+    showChallenge();
   });