mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 05:59: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
|
|
@ -14,7 +14,7 @@
|
|||
/**
|
||||
* @constructor
|
||||
*/
|
||||
function LicensingAdminSetting()
|
||||
function LicensingAdminSettings()
|
||||
{
|
||||
this.licensing = Data.licensing;
|
||||
this.licensingProcess = Data.licensingProcess;
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
}, this);
|
||||
}
|
||||
|
||||
LicensingAdminSetting.prototype.onBuild = function ()
|
||||
LicensingAdminSettings.prototype.onBuild = function ()
|
||||
{
|
||||
if (this.subscriptionEnabled())
|
||||
{
|
||||
|
|
@ -42,12 +42,12 @@
|
|||
}
|
||||
};
|
||||
|
||||
LicensingAdminSetting.prototype.onShow = function ()
|
||||
LicensingAdminSettings.prototype.onShow = function ()
|
||||
{
|
||||
this.adminDomain(Settings.settingsGet('AdminDomain'));
|
||||
};
|
||||
|
||||
LicensingAdminSetting.prototype.showActivationForm = function ()
|
||||
LicensingAdminSettings.prototype.showActivationForm = function ()
|
||||
{
|
||||
require('Knoin/Knoin').showScreenPopup(require('View/Popup/Activate'));
|
||||
};
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
/**
|
||||
* @returns {string}
|
||||
*/
|
||||
LicensingAdminSetting.prototype.licenseExpiredMomentValue = function ()
|
||||
LicensingAdminSettings.prototype.licenseExpiredMomentValue = function ()
|
||||
{
|
||||
var
|
||||
iTime = this.licenseExpired(),
|
||||
|
|
@ -65,6 +65,6 @@
|
|||
return iTime && 1898625600 === iTime ? 'Never' : (oDate.format('LL') + ' (' + oDate.from(moment()) + ')');
|
||||
};
|
||||
|
||||
module.exports = LicensingAdminSetting;
|
||||
module.exports = LicensingAdminSettings;
|
||||
|
||||
}());
|
||||
Loading…
Add table
Add a link
Reference in a new issue