Skip to content

Commit

Permalink
Fix implementors generation as well
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Sep 6, 2018
1 parent d65c863 commit 1b3382f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/librustdoc/html/static/main.js
Expand Up @@ -1791,9 +1791,12 @@
x[k].setAttribute('href', rootPath + href);
}
}
var li = document.createElement('li');
li.appendChild(code);
list.appendChild(li);
var display = document.createElement('h3');
addClass(display, "impl");
display.innerHTML = '<span class="in-band"><table class="table-display"><tbody>\
<tr><td><code>' + code.outerHTML + '</code></td><td></td></tr></tbody></table>\
</span>';
list.appendChild(display);
}
}
};
Expand Down

0 comments on commit 1b3382f

Please sign in to comment.