Tagged Questions
3
votes
1answer
376 views
How do I talk to Firebug from a Web Worker?
My web workers are becoming increasingly complicated and I'm sorely missing Firebug access while working with them. This:
console.log("test");
Does not produce anything from a web worker. I've also ...