cookutils
annotate lighttpd/listing.js @ rev 1077
lighttpd/cooker.css: revert main h2 line height, carry this style to #hdr h2 only; lighttpd/index.cgi: add link to Tank RRD Stats in the footer; package -> files: display SUID files in violet color
author |
Aleksej Bobylev <al.bobylev@gmail.com> |
date |
Wed Jun 13 14:14:45 2018 +0300 (2018-06-13) |
parents |
|
children |
|
rev |
line source |
al@898
|
1 // Click on header return us to the package page
|
al@898
|
2 function setLink() {
|
al@898
|
3 document.getElementsByTagName("h2")[0].onclick = function() {
|
al@898
|
4 location.href = location.pathname.replace(/\/browse\/.*/, "");
|
al@898
|
5 }
|
al@898
|
6 }
|
al@898
|
7 document.addEventListener("DOMContentLoaded", setLink);
|