mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-05 06:22:52 +08:00
30 lines
647 B
JavaScript
30 lines
647 B
JavaScript
|
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
||
|
|
||
|
/**
|
||
|
* @constructor
|
||
|
* @extends AbstractSettings
|
||
|
*/
|
||
|
function SettingsScreen()
|
||
|
{
|
||
|
AbstractSettings.call(this, [
|
||
|
SettingsSystemDropDownViewModel,
|
||
|
SettingsMenuViewModel,
|
||
|
SettingsPaneViewModel
|
||
|
]);
|
||
|
|
||
|
Utils.initOnStartOrLangChange(function () {
|
||
|
this.sSettingsTitle = Utils.i18n('TITLES/SETTINGS');
|
||
|
}, this, function () {
|
||
|
RL.setTitle(this.sSettingsTitle);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
_.extend(SettingsScreen.prototype, AbstractSettings.prototype);
|
||
|
|
||
|
SettingsScreen.prototype.onShow = function ()
|
||
|
{
|
||
|
// AbstractSettings.prototype.onShow.call(this);
|
||
|
|
||
|
RL.setTitle(this.sSettingsTitle);
|
||
|
};
|