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:
Ferotiq 2022-02-22 07:12:48 -06:00 committed by GitHub
parent 80135166b2
commit c0f2a066ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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");
}
}