mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 12:15:20 +08:00
24 lines
524 B
JavaScript
24 lines
524 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');
|
|
|
|
Knoin.constructorEnd(this);
|
|
}
|
|
|
|
Utils.extendAsViewModel('SettingsPaneViewModel', SettingsPaneViewModel);
|
|
|
|
SettingsPaneViewModel.prototype.onShow = function ()
|
|
{
|
|
RL.data().message(null);
|
|
};
|
|
|
|
SettingsPaneViewModel.prototype.backToMailBoxClick = function ()
|
|
{
|
|
kn.setHash(RL.link().inbox());
|
|
};
|