Files
galaxy/config/plugins/visualizations/scatterplot/static/worker-stats.js
T
mahendrapaipuri 47536b3211 Use window.parent.options to get baseurl
Move worker-stats.js file to static so that plugin can find it

Update compiled scatterplot.js with above changes
2023-05-19 17:28:18 +02:00

6 lines
168 B
JavaScript

onmessage = function(event) {
importScripts("numeric-column-stats.js");
postMessage(numericColumnStats(event.data.data, event.data.keys));
self.close();
};