Changes for page Material Collection
Last modified by Judith Steinfeld on 2025/06/03 11:13
From version 55.18
edited by Benjamin Fischer
on 2024/10/28 13:39
on 2024/10/28 13:39
Change comment:
There is no comment for this version
To version 55.23
edited by Benjamin Fischer
on 2024/10/28 13:49
on 2024/10/28 13:49
Change comment:
There is no comment for this version
Summary
-
Objects (1 modified, 0 added, 0 removed)
Details
- XWiki.JavaScriptExtension[0]
-
- Code
-
... ... @@ -56,17 +56,20 @@ 56 56 const b = a.ownerDocument.createElement("b"); 57 57 a.replaceWith(b); 58 58 b.appendChild(a); 59 + a.textContent = row.doc_title; 59 59 60 60 const u = new URL(row.link_value); 61 61 let icon; 62 62 if (u.hostname.includes("github")) icon = "github"; 64 + if (u.hostname.includes("github.io")) icon = "book"; 63 63 if (u.hostname.includes("gitlab")) icon = "gitlab"; 64 64 if (u.hostname.includes("google")) icon = "google"; 67 + if (u.hostname.includes("colab")) icon = "code"; 65 65 if (u.hostname.includes("youtube")) icon = "youtube-play"; 66 66 if (u.pathname.endsWith(".pdf")) icon = "file-pdf-o"; 67 67 if (icon) { 68 68 const s = a.ownerDocument.createElement("span"); 69 - s. textContent="";72 + s.appendChild(a.ownerDocument.createElement("wbr")); 70 70 s.setAttribute("class", `fa fa-${icon}`); 71 71 s.setAttribute("style", "padding-right: .3em;"); 72 72 a.insertBefore(s, a.firstChild);