1
Fork 0

Fix collapse toggle insertions on impl with docs

This commit is contained in:
Guillaume Gomez 2018-03-27 22:49:55 +02:00
parent 14ac1b5faa
commit 8be26a2ca0

View file

@ -1816,6 +1816,9 @@
var func = function(e) {
var next = e.nextElementSibling;
if (hasClass(e, 'impl') && next && hasClass(next, 'docblock')) {
next = next.nextElementSibling;
}
if (!next) {
return;
}