Browse Source

Change this message again

Conflicts:
	js/ajax.js
pull/40/head
8chan 9 years ago
committed by czaks
parent
commit
0f1d506586
  1. 5
      js/ajax.js

5
js/ajax.js

@ -115,7 +115,10 @@ $(window).ready(function() {
}
},
error: function(xhr, status, er) {
alert(_('The server returned an error or truncated response -- your post was probably still submitted. If it wasn\'t, 8chan.co might be experiencing issues right now -- please try your post again later.'));
console.log(xhr);
alert(_('The server took too long to submit your post. Your post was probably still submitted. If it wasn\'t, we might be experiencing issues right now -- please try your post again later. Error information: ') + "<div><textarea>" + JSON.stringify(xhr) + "</textarea></div>");
$(form).find('input[type="submit"]').val(submit_txt);
$(form).find('input[type="submit"]').removeAttr('disabled');
},
data: formData,
cache: false,

Loading…
Cancel
Save