mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 22:17:03 +03:00
Small fixes
This commit is contained in:
parent
ff8ef2012b
commit
c9b5194baf
33 changed files with 296 additions and 58 deletions
|
|
@ -127,6 +127,16 @@ Selector.prototype.selectItemCallbacks = function (oItem)
|
|||
(this.oCallbacks['onItemSelect'] || this.emptyFunction)(oItem);
|
||||
};
|
||||
|
||||
Selector.prototype.goDown = function ()
|
||||
{
|
||||
this.newSelectPosition(Enums.EventKeyCode.Down, false);
|
||||
};
|
||||
|
||||
Selector.prototype.goUp = function ()
|
||||
{
|
||||
this.newSelectPosition(Enums.EventKeyCode.Up, false);
|
||||
};
|
||||
|
||||
Selector.prototype.init = function (oContentVisible, oContentScrollable)
|
||||
{
|
||||
this.oContentVisible = oContentVisible;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue