-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IE10 can't create WebWorkers from blob:-URLs #12
Comments
I think we need to do this. I want to try and support all the browser quirks, if possible. I think it's useful to have a library that normalizes web workers across all the browsers. We may discover that this exposes security flaws, but we'll cross that bridge when we come to it. IE10 support is especially important, I think, because it's the emerging standard for building Metro desktop apps. Developers are going to need a clean and easy to use framework for multi-core processing. |
Ready to go. They're merged in. |
IE10 throws a SecurityError when trying to instantiate a Worker from a blob URL.
According to this (http://stackoverflow.com/questions/10343913/how-to-create-a-web-worker-from-a-string) SO question, you have to use a wrapper script which basically calls eval on the input string.
The text was updated successfully, but these errors were encountered: