Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix Bug
  • Loading branch information
Katsuya Noguchi committed Jan 25, 2012
1 parent a630ebe commit 67d11ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions speakClient.js
@@ -1,7 +1,7 @@
(function(window, undefined) {
var speakWorker;
try {
speakWorker = new Worker('/phoenix/js/tts/speakWorker.js');
speakWorker = new Worker('speakWorker.js');
} catch(e) {
console.log('speak.js warning: no worker support');
}
Expand Down Expand Up @@ -106,4 +106,4 @@
speakWorker.postMessage({ text: text, args: args });
}
}
})(window);
})(window);

0 comments on commit 67d11ba

Please sign in to comment.