Commit aeb66ab8 authored by chriseth's avatar chriseth

Fix undefined window in worker.

parent aa54d3d8
...@@ -7,12 +7,12 @@ module.exports = function (self) { ...@@ -7,12 +7,12 @@ module.exports = function (self) {
var data = e.data; var data = e.data;
switch (data.cmd) { switch (data.cmd) {
case 'loadVersion': case 'loadVersion':
delete window.Module; delete self.Module;
version = null; version = null;
compileJSON = null; compileJSON = null;
self.importScripts(data.data); self.importScripts(data.data);
var Module = window.Module; var Module = self.Module;
version = Module.cwrap('version', 'string', []); version = Module.cwrap('version', 'string', []);
if ('_compileJSONCallback' in Module) { if ('_compileJSONCallback' in Module) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment