Differences From Artifact [21e397b2b0]:
- File src/chat.js — part of check-in [5aac6ae058] at 2021-09-24 08:37:42 on branch chat-user-filter — When chat view is filtered on a single user, the per-message popup now offers the option to jump to that message in the larger unfiltered context. When toggling the active user timestamps on, also toggle the active user setting on if it's not already on. (user: stephan size: 60612)
To Artifact [c768d87495]:
- File src/chat.js — part of check-in [fc27d6a333] at 2021-09-24 09:29:55 on branch chat-user-filter — Changed the "message in context" animation to something more eye-catching and less stuttery. (user: stephan size: 60650)
| ︙ | ︙ | |||
985 986 987 988 989 990 991 |
D.addClass(D.div(), 'toolbar'),
D.button(
"Message in context",
function(){
self.hide();
Chat.setUserFilter(false);
eMsg.scrollIntoView(false);
| | | 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 |
D.addClass(D.div(), 'toolbar'),
D.button(
"Message in context",
function(){
self.hide();
Chat.setUserFilter(false);
eMsg.scrollIntoView(false);
D.addClassBriefly(eMsg.firstElementChild, 'anim-rotate-360');
})
)
);
}/*jump-to button*/
}
const tab = eMsg.querySelector('.message-widget-tab');
|
| ︙ | ︙ |