Skip to content

Commit

Permalink
Fix webworker (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway authored Jul 4, 2021
1 parent 4113fac commit 6784423
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion javascript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "imjoy-rpc",
"version": "0.3.12",
"version": "0.3.13",
"description": "Remote procedure calls for ImJoy.",
"module": "index.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions javascript/src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export function normalizeConfig(config) {
config.description || `[TODO: add description for ${config.name} ]`;
config.type = config.type || "rpc-window";
config.id = config.id || randId();
config.target_origin = config.target_origin || "*";
config.allow_execution = config.allow_execution || false;
if (config.enable_service_worker) {
setupServiceWorker(
Expand Down
2 changes: 1 addition & 1 deletion python/imjoy_rpc/VERSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.3.12"
"version": "0.3.13"
}

0 comments on commit 6784423

Please sign in to comment.