mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 22:02:03 -08:00
14 lines
260 B
HTML
14 lines
260 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Worker test</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var worker = new Worker('worker.js');
|
|
worker.onmessage = function(message) {
|
|
console.log(message.data);
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|