1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-26 10:52:17 -05:00

changed order of listed items

This commit is contained in:
Tankred Hase 2013-08-22 12:15:02 +02:00
parent 88b7252696
commit cb52217529

View File

@ -87,7 +87,7 @@ define(['jquery', 'underscore', 'backbone', 'js/app-config',
list.html('');
// append items to list in reverse order so mails with the most recent date will be displayed first
for (i = emails.length - 1; i >= 0; i--) {
for (i = 0; i < emails.length; i++) {
email = emails[i];
listItemArgs = {
account: self.options.account,