Display the doc-block toggle on everything again.

This needs a clone otherwise each successive insertion detaches `toggle`
from the previous position.

Fixes #17125.
This commit is contained in:
Huon Wilson 2014-09-14 12:06:43 +10:00
parent 1f4117f518
commit 0deb77d382
1 changed files with 1 additions and 1 deletions

View File

@ -762,7 +762,7 @@
$(".method").each(function() {
if ($(this).next().is(".docblock")) {
$(this).children().first().after(toggle[0]);
$(this).children().first().after(toggle.clone());
}
});