Updated changelog

UI minor fixes
This commit is contained in:
Igor Zhukov 2015-03-19 03:26:55 +03:00
parent 7facc52baf
commit 7754a4159c
3 changed files with 8 additions and 4 deletions

View File

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

View File

@ -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>

View File

@ -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>