mirror of
https://github.com/mue/mue.git
synced 2026-07-17 22:14:13 +02:00
feat: debug timeout option, translation support for many things and improve sliders
This commit is contained in:
@@ -10,7 +10,15 @@ export default function ExperimentalInit() {
|
||||
|
||||
switch (code) {
|
||||
case 222:
|
||||
debugger;
|
||||
const timeout = localStorage.getItem('debugtimeout');
|
||||
|
||||
if (timeout !== '0') {
|
||||
setTimeout(() => {
|
||||
debugger;
|
||||
}, timeout);
|
||||
} else {
|
||||
debugger;
|
||||
}
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user