cookutils view lighttpd/listing.js @ rev 1037

cook.conf: fix CXXFLAGS (thanks Alanyih); lib/libcook.sh: don't strip activity log so much
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Mar 18 12:08:29 2018 +0200 (2018-03-18)
parents
children
line source
1 // Click on header return us to the package page
2 function setLink() {
3 document.getElementsByTagName("h2")[0].onclick = function() {
4 location.href = location.pathname.replace(/\/browse\/.*/, "");
5 }
6 }
7 document.addEventListener("DOMContentLoaded", setLink);