Browse Source

[Frontend] Add animation when new message arrives

master
Rohan Sircar 4 years ago
parent
commit
3325c83500
  1. 8
      chatto/src/main/javascript/ts/src/view/ChatView.ts

8
chatto/src/main/javascript/ts/src/view/ChatView.ts

@ -82,6 +82,14 @@ export class ChatView implements Observer<ChatMessageViewModel> {
// if (cd.data.length > 0) { // if (cd.data.length > 0) {
// this._userModel.notify(); // this._userModel.notify();
// } // }
$(this._messageContainer)
.stop()
.animate(
{
scrollTop: $(this._messageContainer)[0].scrollHeight,
},
1500
);
} }
break; break;
case "page": case "page":

Loading…
Cancel
Save