Fix spacing issues in signoffs 'Show More' links

When we had a simple multi-line message here, we would end up with too
much spacing wherever the link had planted itself due to the div adding
visual whitespace. Remove the div completely when the link is clicked to
remedy this.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2013-02-03 13:29:13 -06:00
parent b82c7b6a3a
commit 26d6fba089

View File

@ -451,15 +451,17 @@ function collapseNotes(elements) {
return;
}
contents.slice(maxElements).wrapAll('<div class="hide"/>');
ele.append('<br/><a class="morelink" href="#">Show More…</a>');
ele.append('<br class="morelink-spacer"/><a class="morelink" href="#">Show More…</a>');
// add link and wire it up to show the hidden items
ele.find('a.morelink').click(function(event) {
event.preventDefault();
ele.find('div.hide').show();
$(this).remove();
// remove trailing line break between text and our link
$(this).contents().last().filter('br').remove();
ele.find('br.morelink-spacer').remove();
// move the div contents back and delete the empty div
var hidden = ele.find('div.hide');
hidden.contents().appendTo(ele);
hidden.remove();
});
});
}