Fixes to bugs introduced in 76a60ed

This commit is contained in:
Marcin Kurczewski 2013-11-16 21:14:27 +01:00
parent bb01ae7fca
commit 45e9d32f58
3 changed files with 5 additions and 5 deletions

View file

@ -44,7 +44,7 @@ $(function()
}
else
{
alert(data['errorMessage']);
alert(data['message']);
}
});
});
@ -93,7 +93,7 @@ $(function()
}
else
{
alert(data['errorMessage']);
alert(data['message']);
aDom.removeClass('inactive');
}
});

View file

@ -28,7 +28,7 @@ $(function()
}
else
{
alert(data['errorMessage']);
alert(data['message']);
aDom.removeClass('inactive');
}
});

View file

@ -59,7 +59,7 @@ $(function()
}
else
{
alert(data['errorMessage']);
alert(data['message']);
formDom.find(':input').attr('readonly', false);
formDom.removeClass('inactive');
}
@ -114,7 +114,7 @@ $(function()
}
else
{
alert(data['errorMessage']);
alert(data['message']);
formDom.find(':input').attr('readonly', false);
formDom.removeClass('inactive');
}