From b4b93a2f0cd7202b4d33fbb9bba7697f47a9e770 Mon Sep 17 00:00:00 2001 From: Loic Blot Date: Tue, 16 Sep 2014 22:02:16 +0000 Subject: [PATCH] Scroll at bottom of the messages when loading is finished. --- js/script.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/script.js b/js/script.js index 01d231e..44f79c9 100644 --- a/js/script.js +++ b/js/script.js @@ -43,6 +43,7 @@ function fetchConversation(phoneNumber) { }); $('#app-content').html(conversationBuf); + $('#app-content').scrollTop(1E10); } ); }