mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-24 14:57:26 +08:00
MessageList click was really broken
This commit is contained in:
parent
ab0b2b152c
commit
d9bc435e2c
1 changed files with 4 additions and 5 deletions
|
@ -613,17 +613,16 @@ export class MailMessageList extends AbstractViewRight {
|
|||
AppUserStore.focusedState(Scope.MessageList);
|
||||
}
|
||||
|
||||
let el = eqs(event, '.e-paginator a'),
|
||||
data = ko.dataFor(el);
|
||||
el && this.gotoPage(data);
|
||||
let el = eqs(event, '.e-paginator a');
|
||||
el && this.gotoPage(ko.dataFor(el));
|
||||
|
||||
eqs(event, '.checkboxCheckAll') && this.checkAll(!this.checkAll());
|
||||
|
||||
el = eqs(event, '.flagParent');
|
||||
el && this.flagMessages(data);
|
||||
el && this.flagMessages(ko.dataFor(el));
|
||||
|
||||
el = eqs(event, '.threads-len');
|
||||
el && this.gotoThread(data);
|
||||
el && this.gotoThread(ko.dataFor(el));
|
||||
},
|
||||
dblclick: event => {
|
||||
let el = eqs(event, '.actionHandle');
|
||||
|
|
Loading…
Reference in a new issue