Scott TamosunasScott Tamosunas
Standup 11/6/2008
edit Posted by Scott Tamosunas on Thursday November 06, 2008 at 05:13PM

Ask for Help

"console.log seems to be broken again in Firebug with 1.2.1?"

People have had some success with 1.3 beta. Get Firebug

"Suggestions for creating PDF's in Ruby?"

Comments

  1. Cristi Balan Cristi Balan on November 07, 2008 at 03:32PM

    I've found that just by adding this to one of my js files, I get rid of the console is not defined errors. And I don't get alerts, but the actual behaviour of console.log.

    YMMV, I guess :)

    if (typeof console == "undefined") {
      console = function() {
        this.log = function(str) {alert(str)}
      }
    }