Fix collapse toggle insertions on impl with docs
This commit is contained in:
parent
14ac1b5faa
commit
8be26a2ca0
1 changed files with 3 additions and 0 deletions
|
@ -1816,6 +1816,9 @@
|
||||||
|
|
||||||
var func = function(e) {
|
var func = function(e) {
|
||||||
var next = e.nextElementSibling;
|
var next = e.nextElementSibling;
|
||||||
|
if (hasClass(e, 'impl') && next && hasClass(next, 'docblock')) {
|
||||||
|
next = next.nextElementSibling;
|
||||||
|
}
|
||||||
if (!next) {
|
if (!next) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue