Show in-reply-to message inline
Show in-reply-to message inline
| Issue ID: | 335 |
| Issue Category: | feature |
| Component: | ui |
| Priority: | minor |
| Status: | active |
| Assigned: | Unassigned |
| Milestone: | 0.9 |
Would be cool if clicking the "in reply to" link would show that 'dent inline. Here's a bit o' the ol' javascript that will do it, as a sample.
(To test, open Firebug console in multiline mode, paste this in and run it, then hit one of the i-r-t links.)
http://pastie.textmate.org/240625
{{{
//--
$(".inreplyto").click(function(){
var irt = $(this).attr('href');
var nid = irt.split("/").pop();
var p = $(this).parent().parent();
var notice = null;
$.get(irt,function(data){
notice = $("#notice-"+nid,$(data));
$(".inreplyto",notice).remove();
p.append($("").html(notice.html()));
})
return false;
});
}}}
----
I made a patch which showed the dent on mouse over, http://gist.github.com/1919 but I like this a lot more. One problem, if you keep clicking it keeps adding the same message over and over. -- benmcdonald July 25, 2008, at 12:20 AM

Updates
#1
Does 0.8.2 presentation of ''in context'', and the conversation view, resolve this ticket?
You can also subscribe to the
RSS feed for updates to this issue.