Closed (won't fix)
Project:
Comment join
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
31 Jul 2011 at 16:14 UTC
Updated:
9 Mar 2015 at 01:38 UTC
Jump to comment: Most recent
Comments
Comment #1
__Sander__ commentedIs it the axaj_comments module?
And what happens now if both of them are on?
Comment #2
v8powerage commentedWhen Comment join is turned on and I submit one comment after another new comment dissapears and I'm getting message "comment appended to the previous reply", I need to reload page manually to see the effect.
Comment #3
__Sander__ commentedComment #4
__Sander__ commentedI've tested it. Got to think, what can be done.
What happens now is that
1) ajax_comments submits a new comment
2) comment_join removes the new one and adds it to the old one
3) ajax_comment sees that there is no new comment and does not even refresh anything...
And the problem is that comment_join works server-side and has no knowledge of the form the user is working with///
Started an issue here: http://drupal.org/node/1239896
Comment #5
__Sander__ commentedUnable to do anything about it now, the ajax_comment owners are not responding.
And there is nothing I can do without their assistance.
Looks like for the moment the two modules are incompatible.
Comment #5.0
__Sander__ commenteda
Comment #6
v8powerage commentedI found something like this to reload page but it wont work..
function comment_join_ajax_callback($form, $form_state) {
'; $ret .= 'jQuery(document).ready(function($) {'; $ret .= ' location.reload(true);'; $ret .= '});'; $ret .= 'if ($form_state['my_flag']) {
$ret = '
';
}
return $form;
}