summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-10-26 19:55:22 +0200
committertomsmeding <tom.smeding@gmail.com>2016-10-26 19:55:22 +0200
commitfa19dcd3b3cbd5bd5b380fc41066a68a02774090 (patch)
treed49b9ddd071947a1da89473c5a5e536335558673 /modules
parent850ee62a5c6b469bb25832b24cafb5a609ea84bd (diff)
changes: Make url header clickable
Diffstat (limited to 'modules')
-rw-r--r--modules/changes/changes.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/changes/changes.html b/modules/changes/changes.html
index bdd0fa3..5d44701 100644
--- a/modules/changes/changes.html
+++ b/modules/changes/changes.html
@@ -43,6 +43,7 @@ function focusData(data){
var tbody=document.getElementById("timelinetbody");
if(!header.firstChild)header.appendChild(document.createTextNode(data.url));
else header.firstChild.nodeValue=data.url;
+ header.setAttribute("href",data.url);
var l=tbody.children,i;
for(i=l.length-1;i>=0;i--)tbody.removeChild(l[i]);
@@ -284,7 +285,7 @@ tr.repeated{
</div>
</div>
<div id="timelinecontainer">
- <h2 id="timelineheader"></h2>
+ <h2><a id="timelineheader"></a></h2>
<table id="timelinetbl">
<thead><tr><th>Date</th><th>Hash</th></tr></thead>
<tbody id="timelinetbody"></tbody>