mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-13 11:13:07 +08:00
23 lines
494 B
JavaScript
23 lines
494 B
JavaScript
|
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
||
|
|
||
|
/**
|
||
|
* @constructor
|
||
|
* @extends KnoinAbstractViewModel
|
||
|
*/
|
||
|
function SettingsPaneViewModel()
|
||
|
{
|
||
|
KnoinAbstractViewModel.call(this, 'Right', 'SettingsPane');
|
||
|
}
|
||
|
|
||
|
Utils.extendAsViewModel('SettingsPaneViewModel', SettingsPaneViewModel);
|
||
|
|
||
|
SettingsPaneViewModel.prototype.onShow = function ()
|
||
|
{
|
||
|
RL.data().message(null);
|
||
|
};
|
||
|
|
||
|
SettingsPaneViewModel.prototype.backToMailBoxClick = function ()
|
||
|
{
|
||
|
kn.setHash(RL.link().inbox());
|
||
|
};
|