Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why do I keep getting this error?

I should be able to use this global function right?

http://www.html5rocks.com/en/tutorials/workers/basics/

I'm using chrome.

I'm using https://code.google.com/p/bitjs/ and it begins with

importScripts('io.js');
importScripts('archive.js');
share|improve this question
How do you spawn the worker? – Bergi Jan 24 at 11:25
Thought this would spawn a worker? This is how they use it in code.google.com/p/bitjs/source/browse/unzip.js – David Everlöf Jan 24 at 11:26
No, this needs to be inside a worker script. See code.google.com/p/bitjs/source/browse/archive.js#278 on how they do it, or follow the tutorials you've linked – Bergi Jan 24 at 11:27
Okay, I think I understand.. – David Everlöf Jan 24 at 11:28
You can update to an answer! – David Everlöf Jan 24 at 15:15

1 Answer

up vote 2 down vote accepted

This code needs to be inside a worker script. The worker itself is created via a new Worker object - see Getting Started in the tutorial.

The code you've linked is inside the worker created here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.