mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-06 14:58:19 +08:00
22 lines
437 B
JavaScript
22 lines
437 B
JavaScript
|
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
||
|
|
||
|
/**
|
||
|
* @constructor
|
||
|
* @extends AbstractSettings
|
||
|
*/
|
||
|
function AdminSettingsScreen()
|
||
|
{
|
||
|
AbstractSettings.call(this, [
|
||
|
AdminMenuViewModel,
|
||
|
AdminPaneViewModel
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
_.extend(AdminSettingsScreen.prototype, AbstractSettings.prototype);
|
||
|
|
||
|
AdminSettingsScreen.prototype.onShow = function ()
|
||
|
{
|
||
|
// AbstractSettings.prototype.onShow.call(this);
|
||
|
|
||
|
RL.setTitle('');
|
||
|
};
|