1
0
Fork 0
mirror of https://github.com/correl/codereview.git synced 2025-04-04 01:05:58 -09:00

Cleaned up the reply buttons and their behaviour

This commit is contained in:
Correl Roush 2010-12-21 17:48:13 -05:00
parent 26d7eb381e
commit 57961affb4
3 changed files with 6 additions and 9 deletions
media
templates
components
review

View file

@ -116,9 +116,6 @@ table.diff tr.annotation td {
width: 90%; width: 90%;
height: 3em; height: 3em;
} }
.comment-buttons {
text-align: right;
}
.comment .header { .comment .header {
font-weight: bold; font-weight: bold;
} }

View file

@ -5,6 +5,9 @@
<div class="text ui-widget-content"> <div class="text ui-widget-content">
{{ comment.text|linebreaks }} {{ comment.text|linebreaks }}
</div> </div>
<div class="comment-buttons">
<a class="button" href="#comment-{{ comment.pk }}" rel="respond">Reply</a>
</div>
</div> </div>
{% for response in comment.response_set.all %} {% for response in comment.response_set.all %}
<div class="comment response ui-widget"> <div class="comment response ui-widget">
@ -16,6 +19,3 @@
</div> </div>
</div> </div>
{% endfor %} {% endfor %}
<div class="comment-buttons">
<a class="button" href="#comment-{{ comment.pk }}" rel="respond">Reply</a>
</div>

View file

@ -47,7 +47,7 @@
$('<tr class="comment-form" id="' + form_id + '" ></tr>') $('<tr class="comment-form" id="' + form_id + '" ></tr>')
.append($('<td colspan="3"></td>').append(form)) .append($('<td colspan="3"></td>').append(form))
); );
updateButtons(); styleButtons();
} }
}); });
updateButtons(); updateButtons();
@ -79,8 +79,8 @@
}); });
return false; return false;
}); });
$(this).parent().before($('<div class="comment-form"></div>').append(form)); $(this).parents('.comment').parent().append($('<div class="comment-form"></div>').append(form));
updateButtons(); styleButtons();
} }
}); });
styleButtons(); styleButtons();