diff --git a/res/index.html b/res/index.html index 7a8c54f1..a6f7a1ec 100644 --- a/res/index.html +++ b/res/index.html @@ -6,6 +6,8 @@ + About Quirk
diff --git a/src/fallback.js b/src/fallback.js index 9bc8baf2..9ae4df3f 100644 --- a/src/fallback.js +++ b/src/fallback.js @@ -3,8 +3,9 @@ import describe from "src/base/Describe.js" let _alreadySeen = []; let showErrorDiv = (subject, body) => { let errDivStyle = document.getElementById('errorDiv').style; - if (errDivStyle.display !== 'block') { - // Faded away. We can re-show messages now. + if (errDivStyle.opacity < 0.7) { + // Partially faded away as user interacted with circuit. + // Enough time to justify updating the message despite the risk of clearing the user's selection. _alreadySeen = []; }