-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Subscribe feature for status updates #685
Conversation
This looks good, tested with 18.0 and 18.1 and the fallback seems to work as expected. |
…n while I grapple with the CSS/Less
index.html
Outdated
<div id=sb_trap class=right title="Trap Event" hidden>⎕TRAP</div> | ||
<div id=sb_dq class=right title="Dequeue Events" hidden>⎕DQ: </div> | ||
<div id=sb_threads class=right title="Thread Count" hidden>&: </div> | ||
<div id=sb_cc class=right title="Compact Cleaner" hidden>CC: </div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe should say Count of compactions performed
src/ide.js
Outdated
I.sb_cc.classList.toggle('active', x.CompactCount !== 1); | ||
I.sb_gc.classList.toggle('active', x.GarbageCount !== 0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These 2 will only ever increase, so either don't make them active or (if we want to indicate when an increase happens) activate them on increase and then let them fade back after some time.
No description provided.