fix #252 by updating the wording

This commit is contained in:
Stefan Breunig 2013-02-21 20:15:29 +01:00
parent caeb842063
commit 6bf3de0607

View File

@ -49,6 +49,6 @@ window.setupRedeem = function() {
if((e.keyCode ? e.keyCode : e.which) != 13) return;
var data = {passcode: $(this).val()};
window.postAjax('redeemReward', data, window.handleRedeemResponse,
function() { alert('HTTP request failed. Try again?'); });
function() { alert('The HTTP request failed. Either your code is invalid or their servers are down. No way to tell.'); });
});
}