Changes for page Helpers

Last modified by Benjamin Fischer on 2025/06/17 11:57

From version 1.14
edited by Benjamin Fischer
on 2025/05/15 16:47
Change comment: There is no comment for this version
To version 1.13
edited by Benjamin Fischer
on 2025/05/15 16:44
Change comment: There is no comment for this version

Summary

Details

XWiki.JavaScriptExtension[0]
Code
... ... @@ -29,11 +29,6 @@
29 29   (v, i) => v.textContent = tagCols[tableId][i][0]
30 30   );
31 31  
32 - // filter fields
33 - tab.querySelectorAll(".xwiki-livetable-display-header-filter input[type=text]").forEach(
34 - v => v.placeholder = "Filter ...";
35 - );
36 -
37 37   // column tooltips
38 38   tab.querySelectorAll(".xwiki-livetable-display-header-text").forEach(
39 39   el => {
... ... @@ -88,7 +88,7 @@
88 88   const a = new Element("a", { href: row.link });
89 89   a.innerHTML = `<b class="wikiexternallink">${row.doc_title}</b>`;
90 90   row.doc_title = a.outerHTML;
91 -
86 +
92 92   row.doc_date = row.doc_date.split(" ")[0];
93 93   };
94 94