mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 13:09:21 +03:00
Login screen new interface (social buttons)
This commit is contained in:
parent
28a684b7c8
commit
77a30c0b92
40 changed files with 622 additions and 630 deletions
|
|
@ -19,7 +19,7 @@
|
|||
/**
|
||||
* @constructor
|
||||
*/
|
||||
function SecurityAdminSetting()
|
||||
function SecurityAdminSettings()
|
||||
{
|
||||
this.useLocalProxyForExternalImages = Data.useLocalProxyForExternalImages;
|
||||
|
||||
|
|
@ -91,7 +91,7 @@
|
|||
this.onNewAdminPasswordResponse = _.bind(this.onNewAdminPasswordResponse, this);
|
||||
}
|
||||
|
||||
SecurityAdminSetting.prototype.onNewAdminPasswordResponse = function (sResult, oData)
|
||||
SecurityAdminSettings.prototype.onNewAdminPasswordResponse = function (sResult, oData)
|
||||
{
|
||||
if (Enums.StorageResultType.Success === sResult && oData && oData.Result)
|
||||
{
|
||||
|
|
@ -109,7 +109,7 @@
|
|||
}
|
||||
};
|
||||
|
||||
SecurityAdminSetting.prototype.onBuild = function ()
|
||||
SecurityAdminSettings.prototype.onBuild = function ()
|
||||
{
|
||||
var
|
||||
Remote = require('Storage/Admin/Remote')
|
||||
|
|
@ -140,7 +140,7 @@
|
|||
});
|
||||
};
|
||||
|
||||
SecurityAdminSetting.prototype.onHide = function ()
|
||||
SecurityAdminSettings.prototype.onHide = function ()
|
||||
{
|
||||
this.adminPassword('');
|
||||
this.adminPasswordNew('');
|
||||
|
|
@ -150,11 +150,11 @@
|
|||
/**
|
||||
* @return {string}
|
||||
*/
|
||||
SecurityAdminSetting.prototype.phpInfoLink = function ()
|
||||
SecurityAdminSettings.prototype.phpInfoLink = function ()
|
||||
{
|
||||
return Links.phpInfo();
|
||||
};
|
||||
|
||||
module.exports = SecurityAdminSetting;
|
||||
module.exports = SecurityAdminSettings;
|
||||
|
||||
}());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue