1
0
mirror of https://github.com/chubin/cheat.sh.git synced 2026-06-20 13:16:44 +02:00
Files
cheat.sh/share/static/awesomplete-gh-pages/index.js
T
2017-05-08 21:17:29 +00:00

16 lines
377 B
JavaScript

/* global Awesomplete, $:true, $$:true */
$ = Awesomplete.$;
$$ = Awesomplete.$$;
document.addEventListener("DOMContentLoaded", function() {
var nav = $("nav")
$$("section > h1").forEach(function (h1) {
if (h1.parentNode.id) {
$.create("a", {
href: "#" + h1.parentNode.id,
textContent: h1.textContent.replace(/\(.+?\)/g, ""),
inside: nav
});
}
});
});