Browse Source

Updated changelog

UI minor fixes
master
Igor Zhukov 10 years ago
parent
commit
7754a4159c
  1. 4
      app/js/message_composer.js
  2. 4
      app/partials/desktop/changelog_modal.html
  3. 4
      app/partials/mobile/changelog_modal.html

4
app/js/message_composer.js

@ -174,7 +174,7 @@ EmojiTooltip.prototype.onMouseEnter = function (triggerShow) {
delete this.hideTimeout; delete this.hideTimeout;
} }
else if (triggerShow && !this.showTimeout) { 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; var self = this;
this.hideTimeout = setTimeout(function () { this.hideTimeout = setTimeout(function () {
self.hide(); self.hide();
}, 500); }, 400);
} }
else if (triggerUnshow && this.showTimeout) { else if (triggerUnshow && this.showTimeout) {
clearTimeout(this.showTimeout); clearTimeout(this.showTimeout);

4
app/partials/desktop/changelog_modal.html

@ -35,7 +35,9 @@
<div class="md_modal_section_version">0.4.1</div> <div class="md_modal_section_version">0.4.1</div>
<div class="md_modal_section_description changelog_version_changes"> <div class="md_modal_section_description changelog_version_changes">
<ul class="list-unstyled changelog_version_changes_list"> <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> <li>Setting to disable message preview</li>
</ul> </ul>
</div> </div>

4
app/partials/mobile/changelog_modal.html

@ -25,7 +25,9 @@
</h3> </h3>
<div class="modal_section_body changelog_version_changes"> <div class="modal_section_body changelog_version_changes">
<ul class="list-unstyled changelog_version_changes_list"> <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> <li>Setting to disable message preview</li>
</ul> </ul>
</div> </div>

Loading…
Cancel
Save