Updated changelog
UI minor fixes
This commit is contained in:
parent
7facc52baf
commit
7754a4159c
@ -174,7 +174,7 @@ EmojiTooltip.prototype.onMouseEnter = function (triggerShow) {
|
||||
delete this.hideTimeout;
|
||||
}
|
||||
else if (triggerShow && !this.showTimeout) {
|
||||
this.showTimeout = setTimeout(this.show.bind(this), 500);
|
||||
this.showTimeout = setTimeout(this.show.bind(this), 200);
|
||||
}
|
||||
};
|
||||
|
||||
@ -183,7 +183,7 @@ EmojiTooltip.prototype.onMouseLeave = function (triggerUnshow) {
|
||||
var self = this;
|
||||
this.hideTimeout = setTimeout(function () {
|
||||
self.hide();
|
||||
}, 500);
|
||||
}, 400);
|
||||
}
|
||||
else if (triggerUnshow && this.showTimeout) {
|
||||
clearTimeout(this.showTimeout);
|
||||
|
@ -35,7 +35,9 @@
|
||||
<div class="md_modal_section_version">0.4.1</div>
|
||||
<div class="md_modal_section_description changelog_version_changes">
|
||||
<ul class="list-unstyled changelog_version_changes_list">
|
||||
<li>Replies and mentions for groups:<br/>check out <a href="https://telegram.org/blog/replies-mentions-hashtags" target="_blank">Telegram Blog</a> for more info</li>
|
||||
<li>Reply to specific messages in groups.</li>
|
||||
<li>Mention @usernames in groups to notify multiple users.</li>
|
||||
<li>Revised notifications in groups: mentioned users and people you reply to will be notified (private chat notification settings apply in this case instead of group settings). Check out <a href="https://telegram.org/blog/replies-mentions-hashtags" target="_blank">Telegram Blog</a> for more info.</li>
|
||||
<li>Setting to disable message preview</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -25,7 +25,9 @@
|
||||
</h3>
|
||||
<div class="modal_section_body changelog_version_changes">
|
||||
<ul class="list-unstyled changelog_version_changes_list">
|
||||
<li>Replies and mentions for groups:<br/>check out <a href="https://telegram.org/blog/replies-mentions-hashtags" target="_blank">Telegram Blog</a> for more info</li>
|
||||
<li>Reply to specific messages in groups.</li>
|
||||
<li>Mention @usernames in groups to notify multiple users.</li>
|
||||
<li>Revised notifications in groups: mentioned users and people you reply to will be notified (private chat notification settings apply in this case instead of group settings). Check out <a href="https://telegram.org/blog/replies-mentions-hashtags" target="_blank">Telegram Blog</a> for more info.</li>
|
||||
<li>Setting to disable message preview</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user