Skip to content
Snippets Groups Projects

OP#7728 Redirect Tool anpassen https://projects.iml.unibe.ch/work_packages/77287728 handle http and https redirects

Merged Hahn Axel (hahn) requested to merge 7728-handle-http-and-https-redirects into master
4 files
+ 306
229
Compare changes
  • Side-by-side
  • Inline

Files

+ 6
0
@@ -44,6 +44,12 @@ async function showInOverlay(oLink){
if (response.ok) {
show(body);
// colorize clicked link
var myspan=document.getElementsByClassName("status")[0];
var myclass=myspan.className.replace("status ","");
oLink.className=myclass;
oLink.title=myspan.innerText;
} else {
show("HTTP-Error: " + response.status);
}
Loading