Results 2 issues of Bryan Grohman

Evan, As I'm looking at the code, I'm noticing that there isn't a lot of functionality right now being provided by jQuery. If you don't deliver this as a jQuery...

Add the ability to subscribe to messages from a lazy-worker using the `addEventListener` function. Example: ``` javascript var worker = new Worker('my-worker.js'); worker.addEventListener('message', function(msg) { console.log(msg.data.foo); }, false); ```

enhancement