Richard Cornwell (K9RCP) authored on 11/17/2022 13:32:27
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,6 @@
1
+importScripts("js/viz.js");
2
+
3
+onmessage = function(e) {
4
+  var result = Viz(e.data.src, e.data.options);
5
+  postMessage(result);
6
+}