diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-10-26 19:55:22 +0200 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-10-26 19:55:22 +0200 |
commit | fa19dcd3b3cbd5bd5b380fc41066a68a02774090 (patch) | |
tree | d49b9ddd071947a1da89473c5a5e536335558673 /modules/changes/changes.html | |
parent | 850ee62a5c6b469bb25832b24cafb5a609ea84bd (diff) |
changes: Make url header clickable
Diffstat (limited to 'modules/changes/changes.html')
-rw-r--r-- | modules/changes/changes.html | 3 |
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> |