mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-10 05:35:05 +08:00
Warn users on edge about disabling efficiency mode (#2562)
* add edge message * Update test-timer.js * Update test-timer.js
This commit is contained in:
parent
80135166b2
commit
c0f2a066ff
1 changed files with 6 additions and 0 deletions
|
@ -220,10 +220,16 @@ export async function start() {
|
|||
slowTimerCount++;
|
||||
if (slowTimerCount > 5) {
|
||||
//slow timer
|
||||
|
||||
if (window.navigator.userAgent.includes("Edg")) {
|
||||
Notifications.add('This bad performance could be caused by "efficiency mode" on Microsoft Edge.');
|
||||
}
|
||||
|
||||
Notifications.add(
|
||||
"Stopping the test due to bad performance. This would cause test calculations to be incorrect. If this happens a lot, please report this.",
|
||||
-1
|
||||
);
|
||||
|
||||
TimerEvent.dispatch("fail", "slow timer");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue