Commit befa50c2 authored by chriseth's avatar chriseth

Merge pull request #99 from chriseth/fixWorker

Fix again.
parents 3ac81fc3 656a6a08
...@@ -33,7 +33,7 @@ addEventListener('message', function(e) { ...@@ -33,7 +33,7 @@ addEventListener('message', function(e) {
break; break;
case 'compile': case 'compile':
missingInputs.length = 0; missingInputs.length = 0;
postMessage({cmd: 'compiled', data: compileJSON(data.source, data.optimize)}, missingInputs: missingInputs); postMessage({cmd: 'compiled', data: compileJSON(data.source, data.optimize), missingInputs: missingInputs});
break; break;
} }
}, false); }, false);
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