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:
parent
1f4117f518
commit
0deb77d382
@ -762,7 +762,7 @@
|
|||||||
|
|
||||||
$(".method").each(function() {
|
$(".method").each(function() {
|
||||||
if ($(this).next().is(".docblock")) {
|
if ($(this).next().is(".docblock")) {
|
||||||
$(this).children().first().after(toggle[0]);
|
$(this).children().first().after(toggle.clone());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user