mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03: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);
|
AppUserStore.focusedState(Scope.MessageList);
|
||||||
}
|
}
|
||||||
|
|
||||||
let el = eqs(event, '.e-paginator a'),
|
let el = eqs(event, '.e-paginator a');
|
||||||
data = ko.dataFor(el);
|
el && this.gotoPage(ko.dataFor(el));
|
||||||
el && this.gotoPage(data);
|
|
||||||
|
|
||||||
eqs(event, '.checkboxCheckAll') && this.checkAll(!this.checkAll());
|
eqs(event, '.checkboxCheckAll') && this.checkAll(!this.checkAll());
|
||||||
|
|
||||||
el = eqs(event, '.flagParent');
|
el = eqs(event, '.flagParent');
|
||||||
el && this.flagMessages(data);
|
el && this.flagMessages(ko.dataFor(el));
|
||||||
|
|
||||||
el = eqs(event, '.threads-len');
|
el = eqs(event, '.threads-len');
|
||||||
el && this.gotoThread(data);
|
el && this.gotoThread(ko.dataFor(el));
|
||||||
},
|
},
|
||||||
dblclick: event => {
|
dblclick: event => {
|
||||||
let el = eqs(event, '.actionHandle');
|
let el = eqs(event, '.actionHandle');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue