Commit 84812663 authored by JC Brand's avatar JC Brand

Make the new msg indicator clickable

parent b6fcc9b7
...@@ -68,7 +68,8 @@ ...@@ -68,7 +68,8 @@
'click .toggle-smiley': 'toggleEmoticonMenu', 'click .toggle-smiley': 'toggleEmoticonMenu',
'click .toggle-smiley ul li': 'insertEmoticon', 'click .toggle-smiley ul li': 'insertEmoticon',
'click .toggle-clear': 'clearMessages', 'click .toggle-clear': 'clearMessages',
'click .toggle-call': 'toggleCall' 'click .toggle-call': 'toggleCall',
'click .new-msgs-indicator': 'viewUnreadMessages'
}, },
initialize: function () { initialize: function () {
...@@ -703,6 +704,12 @@ ...@@ -703,6 +704,12 @@
} }
}, 150), }, 150),
viewUnreadMessages: function () {
this.model.set('scrolled', false);
this.scrollDown();
},
scrollDownMessageHeight: function ($message) { scrollDownMessageHeight: function ($message) {
if (this.$content.is(':visible') && !this.model.get('scrolled')) { if (this.$content.is(':visible') && !this.model.get('scrolled')) {
this.$content.scrollTop(this.$content.scrollTop() + $message[0].scrollHeight); this.$content.scrollTop(this.$content.scrollTop() + $message[0].scrollHeight);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment