mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-01 12:32:40 +08:00
e63037d7e2
New update system for main code (About tab)
20 lines
No EOL
386 B
JavaScript
20 lines
No EOL
386 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 ()
|
|
{
|
|
RL.setTitle('');
|
|
}; |