Skip to content

Commit

Permalink
[fixed] hard-code path to worker so it gets picked up by workerify
Browse files Browse the repository at this point in the history
  • Loading branch information
jergason committed Sep 9, 2014
1 parent 1337c9d commit b1fe90c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var Recorder = function(source, cfg){
this.node = (this.context.createScriptProcessor ||
this.context.createJavaScriptNode).call(this.context,
bufferLen, 2, 2);
var worker = new Worker(config.workerPath || WORKER_PATH);
var worker = new Worker(WORKER_PATH);
worker.postMessage({
command: 'init',
config: {
Expand Down

0 comments on commit b1fe90c

Please sign in to comment.