mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 21:58:37 +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 allTransform;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user