some fixes

This commit is contained in:
Michael Foster 2013-09-15 15:06:29 +10:00
parent 30245c85f8
commit 26b5f801ea

View File

@ -25,7 +25,7 @@ $(window).ready(function() {
var formData = new FormData(this);
formData.append('json_response', '1');
formData.append('post', $(this).find('input[type="submit"]').val());
formData.append('post', submit_txt);
var updateProgress = function(e) {
$(form).find('input[type="submit"]').val(_('Posting... (#%)').replace('#', Math.round(e.position / e.total * 100)));
@ -60,8 +60,10 @@ $(window).ready(function() {
$(document).trigger('new_post', this);
}
});
highlightReply(post_response.id);
document.location = '#' + post_response.id;
window.location.hash = post_response.id;
$(window).scrollTop($('div.post#reply_' + post_response.id).offset().top);
$(form).find('input[type="submit"]').val(submit_txt);
$(form).find('input[type="submit"]').removeAttr('disabled');