Hi, we are getting errors when clicking "respond to this post". when using ie8. Fireworks seems fine (the box expands and the button disapears)
the error is:
Not implemented
post_comment.js
code:0
line 62 char 4
Thanks,
will
Hi, we are getting errors when clicking "respond to this post". when using ie8. Fireworks seems fine (the box expands and the button disapears)
the error is:
Not implemented
post_comment.js
code:0
line 62 char 4
Thanks,
will
Thats because ie is already using 'parent' variable name i expect, so replacing the variable with somthing less generic clears it up:
(line 57-73)
// Check if reply or new comment
if(id) {
jQuery('input#ef-comment_parent').val(id);
parent_id_string = '#comment-'+id;
} else {
parent_id_string = '#ef-comments_wrapper';
}
jQuery('#ef-comment_respond').hide();
// Show reply textbox
jQuery('#ef-replyrow')
.show()
.appendTo(jQuery(parent_id_string))
;
jQuery('#ef-replycontent').focus();
Thanks for the fix Will! We'll make sure to patch this in the next release.
This topic has been closed to new replies.