Parcourir la source

Fixed scrolling to bottom in chat.

KrisVos130 il y a 9 ans
Parent
commit
760a6dcb44
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      app/client/client.js

+ 1 - 1
app/client/client.js

@@ -526,7 +526,7 @@ Template.room.onRendered(function() {
 
 Template.room.helpers({
     chat: function() {
-        var elem = document.getElementById('chat-ul');
+        var elem = document.getElementById('chat');
         if (elem !== undefined && elem !== null) {
             elem.scrollTop = elem.scrollHeight;
         }