Within my web worker, I have a line where I define the onmessage
handler as shown below:
onmessage = function() {/*...*/}
While this code works flawlessly in Firefox, it throws an error in Google Chrome:
Uncaught ReferenceError: onmessage is not defined
Can anyone point out the issue with my code example?