kriszyp / transporter

Transporter is JSGI application that serves modules to the browser with dependencies included and packaged in the CommonJS module transport format.
http://www.persvr.org/
39 stars 4 forks source link

opera #2

Open dvv opened 14 years ago

dvv commented 14 years ago

Opera has no console.error, no console at all. So do IE. Any assumption on existing console.error should be removed from the code, or a Transported script will always fail to load.

--Vladimir

janmentzel commented 13 years ago

better do if(window.console && console.error) console.error('message'); so Firebug, Chrome and Safari will still log the errors.

Jan