Add public website to private repo

This commit is contained in:
Willem Dantuma
2023-08-31 09:57:49 +02:00
parent 7a7936c4ed
commit f93eaa667c
341 changed files with 23390 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
"use strict";
const domainURL = registryApp.domainURL;
const link_ecl_unordered_list = 'link-ecl-unordered-list';
$(document).ready(function () {
$(".link-ecl-unordered-list").each(function () {
var listtext = $(this).text();
listtext = listtext.replaceAll("_registryApp_domainURL_", domainURL);
$(this).text(listtext);
var href = $(this).attr('href');
href = listtext.replaceAll("_registryApp_domainURL_", domainURL);
$(this).attr("href", href);
});
});