Login screen new interface (social buttons)

This commit is contained in:
RainLoop Team 2014-10-30 17:59:25 +04:00
parent 28a684b7c8
commit 77a30c0b92
40 changed files with 622 additions and 630 deletions

View file

@ -18,7 +18,7 @@
/**
* @constructor
*/
function GeneralAdminSetting()
function GeneralAdminSettings()
{
this.mainLanguage = Data.mainLanguage;
this.mainTheme = Data.mainTheme;
@ -59,7 +59,7 @@
this.themeTrigger = ko.observable(Enums.SaveSettingsStep.Idle);
}
GeneralAdminSetting.prototype.onBuild = function ()
GeneralAdminSettings.prototype.onBuild = function ()
{
var
self = this,
@ -128,7 +128,7 @@
}, 50);
};
GeneralAdminSetting.prototype.selectLanguage = function ()
GeneralAdminSettings.prototype.selectLanguage = function ()
{
require('Knoin/Knoin').showScreenPopup(require('View/Popup/Languages'));
};
@ -136,11 +136,11 @@
/**
* @return {string}
*/
GeneralAdminSetting.prototype.phpInfoLink = function ()
GeneralAdminSettings.prototype.phpInfoLink = function ()
{
return Links.phpInfo();
};
module.exports = GeneralAdminSetting;
module.exports = GeneralAdminSettings;
}());