padefla / simile-widgets

Automatically exported from code.google.com/p/simile-widgets
0 stars 0 forks source link

patch for window.console test #363

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
timeplot-api.js contains this code:

            if (local && window.console.open) {
                window.console.open();
            }

Firefox 3.6.3 logs an error about missing window.console. Here's a fix:

            if (local && window.console && window.console.open) {
                window.console.open();
            }

Original issue reported on code.google.com by michael....@gmail.com on 8 Apr 2010 at 4:37

GoogleCodeExporter commented 8 years ago

Original comment by ryan...@csail.mit.edu on 23 Jun 2011 at 9:53