mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-28 18:41:34 +08:00
ccbf04cb67
Fixed languages popup Release commit
33 lines
No EOL
573 B
JavaScript
33 lines
No EOL
573 B
JavaScript
|
|
(function (module, require) {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
|
|
AbstractSettings = require('Screen:AbstractSettings')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends AbstractSettings
|
|
*/
|
|
function AdminSettingsScreen()
|
|
{
|
|
AbstractSettings.call(this, [
|
|
require('View:Admin:SettingsMenu'),
|
|
require('View:Admin:SettingsPane')
|
|
]);
|
|
}
|
|
|
|
_.extend(AdminSettingsScreen.prototype, AbstractSettings.prototype);
|
|
|
|
AdminSettingsScreen.prototype.onShow = function ()
|
|
{
|
|
require('App:Admin').setTitle('');
|
|
};
|
|
|
|
module.exports = AdminSettingsScreen;
|
|
|
|
}(module, require)); |