Changes for page Material Collection

Last modified by Judith Steinfeld on 2025/06/03 11:13

From version 55.21
edited by Benjamin Fischer
on 2024/10/28 13:45
Change comment: There is no comment for this version
To version 55.17
edited by Benjamin Fischer
on 2024/10/28 13:35
Change comment: There is no comment for this version

Summary

Details

XWiki.JavaScriptExtension[0]
Code
... ... @@ -56,7 +56,6 @@
56 56   const b = a.ownerDocument.createElement("b");
57 57   a.replaceWith(b);
58 58   b.appendChild(a);
59 - a.textContent = row.doc_title;
60 60  
61 61   const u = new URL(row.link_value);
62 62   let icon;
... ... @@ -67,7 +67,7 @@
67 67   if (u.pathname.endsWith(".pdf")) icon = "file-pdf-o";
68 68   if (icon) {
69 69   const s = a.ownerDocument.createElement("span");
70 - s.appendChild(a.ownerDocument.createElement("wbr"));
69 + s.textContent = " ";
71 71   s.setAttribute("class", `fa fa-${icon}`);
72 72   s.setAttribute("style", "padding-right: .3em;");
73 73   a.insertBefore(s, a.firstChild);