mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-25 04:28:30 +00:00
fix android support
This commit is contained in:
parent
8dba865ca7
commit
30a5176090
@ -46,7 +46,9 @@ export function repl({
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const scheduler = sync ? new NeoCyclist(schedulerOptions) : new Cyclist(schedulerOptions);
|
// NeoCyclist uses a shared worker to communicate between instances, which is not supported on mobile chrome
|
||||||
|
const scheduler =
|
||||||
|
sync && typeof SharedWorker != 'undefined' ? new NeoCyclist(schedulerOptions) : new Cyclist(schedulerOptions);
|
||||||
let pPatterns = {};
|
let pPatterns = {};
|
||||||
let allTransform;
|
let allTransform;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user