Fix gmail imap mails count

This commit is contained in:
RainLoop Team 2014-05-27 16:54:41 +04:00
parent 57221d9a8e
commit 348cb25dbc
10 changed files with 91 additions and 30 deletions

View file

@ -87,6 +87,15 @@ html.rl-no-preview-pane {
}
}
.line-loading {
position: absolute;
left: 0;
right: 0;
z-index: 102;
height: 0px;
top: 50px;
}
.mainDelimiter {
position: absolute;
left: 0;
@ -530,6 +539,10 @@ html.ssm-state-desktop-large {
}
}
html.cssanimations.rl-anim .messageList .line-loading {
height: 5px !important;
}
.draggablePlace {
z-index: 10002;
color: #fff;

View file

@ -392,7 +392,7 @@ html.rl-no-preview-pane .messageView {
}
}
html.cssanimations.rl-anim .line-loading {
html.cssanimations.rl-anim .messageItem .line-loading {
height: 5px !important;
}

View file

@ -716,6 +716,12 @@ MailBoxMessageListViewModel.prototype.initShortcuts = function ()
}
});
// check mail
key('ctrl+r, command+r', [Enums.KeyState.FolderList, Enums.KeyState.MessageList, Enums.KeyState.MessageView], function () {
self.reloadCommand();
return false;
});
// check all
key('ctrl+a, command+a', Enums.KeyState.MessageList, function () {
self.checkAll(!(self.checkAll() && !self.isIncompleteChecked()));