Skip to content

Commit

Permalink
ajout de liens dans la colonne "url" de la page d'historique
Browse files Browse the repository at this point in the history
Demande exprimée par Frédéric BORDAGE lors d'une formation écoconception de service numérique
  • Loading branch information
dipisoft authored and didierfred committed Jul 20, 2023
1 parent 7fadc55 commit 76c139f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/history.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function appendLine(result_date, url, nbRequest, responsesSize, domSize, greenho
let url_toshow = url;
if (url_toshow.length>100) url_toshow = url_toshow.substring(0,100) + "...";
let html = "<td>" + date.toLocaleDateString() + " " + date.toLocaleTimeString() + "</td>";
html = html + "<td>" + url_toshow + "</td>";
html = html + '<td><a href="' + url + '" target="blank">' + url_toshow + '</a></td>';
html = html + "<td>" + nbRequest + "</td>";
html = html + "<td>" + responsesSize + "</td>";
html = html + "<td>" + domSize + "</td>";
Expand Down

0 comments on commit 76c139f

Please sign in to comment.