forked from verdnatura/hedera-web
Bionic RC1
This commit is contained in:
parent
2478c19fc2
commit
76334d1df5
|
@ -6,9 +6,7 @@ Vn.Login =
|
||||||
{
|
{
|
||||||
initialize: function ()
|
initialize: function ()
|
||||||
{
|
{
|
||||||
var hash = new Vn.Hash ();
|
switch (Vn.Hash.get ('error'))
|
||||||
|
|
||||||
switch (hash.get ('error'))
|
|
||||||
{
|
{
|
||||||
case 'badLogin':
|
case 'badLogin':
|
||||||
alert (_('InvalidLogin'));
|
alert (_('InvalidLogin'));
|
||||||
|
|
|
@ -109,14 +109,17 @@ Vn.Web =
|
||||||
{
|
{
|
||||||
if (location.host != res.get ('production_domain'))
|
if (location.host != res.get ('production_domain'))
|
||||||
{
|
{
|
||||||
Vn.Node.setText ($('test-link'), _('ReturnToOldWebsite'));
|
var linkText = 'ReturnToOldWebsite';
|
||||||
$('test-link').href = res.get ('production_domain');
|
var linkField = 'production_domain';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Vn.Node.setText ($('test-link'), _('TestTheNewWebsite'));
|
var linkText = 'TestTheNewWebsite';
|
||||||
$('test-link').href = res.get ('test_domain');
|
var linkField = 'test_domain';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Vn.Node.setText ($('test-link'), _(linkText));
|
||||||
|
$('test-link').href = '//'+ res.get (linkField);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
Vn.Node.hide ($('test-link'));
|
Vn.Node.hide ($('test-link'));
|
||||||
|
|
Loading…
Reference in New Issue