diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-04 13:42:11 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-04 13:42:11 -0800 |
commit | d0be88b6b1c498edca654701b86c4b7621135fcd (patch) | |
tree | b029447e18f5dd13c9ff9777f92e594f3c6b6bb6 /src/proxyClient.js | |
parent | a9ef49d8c97dcaed3cc7778acf61de978efdd5ff (diff) | |
parent | 8a419cd95dad82f649f16d339dbbe3de3bb0db32 (diff) |
Merge pull request #1735 from juj/name_js_functions
Name js functions.
Diffstat (limited to 'src/proxyClient.js')
-rw-r--r-- | src/proxyClient.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proxyClient.js b/src/proxyClient.js index 38ea5771..8f4ad7a6 100644 --- a/src/proxyClient.js +++ b/src/proxyClient.js @@ -5,7 +5,7 @@ Module.ctx = Module.canvas.getContext('2d'); var worker = new Worker('{{{ filename }}}.js'); -worker.onmessage = function(event) { +worker.onmessage = function worker_onmessage(event) { var data = event.data; switch (data.target) { case 'stdout': { |