Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Prepend sent messages
  • Loading branch information
john committed Apr 24, 2017
1 parent 862c09f commit a05e887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/js/app.js
Expand Up @@ -71,7 +71,7 @@ function deleteInboxMessage(message_id) {
listItem += '</div><div class="collapsible-body"><span>';
listItem += message;
listItem += '</span></div></li>';
sentList.append(listItem);
sentList.prepend(listItem);
}

$('#send-button').click(function() {
Expand Down

0 comments on commit a05e887

Please sign in to comment.