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

@ -10,7 +10,7 @@
/**
* @constructor
*/
function AboutAdminSetting()
function AboutAdminSettings()
{
var
Settings = require('Storage/Settings'),
@ -67,7 +67,7 @@
}, this);
}
AboutAdminSetting.prototype.onBuild = function ()
AboutAdminSettings.prototype.onBuild = function ()
{
if (this.access())
{
@ -75,7 +75,7 @@
}
};
AboutAdminSetting.prototype.updateCoreData = function ()
AboutAdminSettings.prototype.updateCoreData = function ()
{
if (!this.coreUpdating())
{
@ -83,6 +83,6 @@
}
};
module.exports = AboutAdminSetting;
module.exports = AboutAdminSettings;
}());