Small fixes

This commit is contained in:
RainLoop Team 2013-12-13 03:23:47 +04:00
parent ff8ef2012b
commit c9b5194baf
33 changed files with 296 additions and 58 deletions

View file

@ -178,6 +178,15 @@ function MailBoxMessageListViewModel()
}
}, this));
RL
.sub('mailbox.message-list.selector.go-down', function () {
this.selector.goDown();
}, this)
.sub('mailbox.message-list.selector.go-up', function () {
this.selector.goUp();
}, this)
;
Knoin.constructorEnd(this);
}