Search: if

Last modified by admin on 2022/04/24 04:58

Results 1 - 10 of 17 next page » Page 1 2

code

Located in
Property value
if (shouldHide) { const bottomPanel = document.getElementById('xwikidatacontents'); if (bottomPanel) { bottomPanel.style.display = 'none'; } }

code

Located in
Property value
const leftPanel = document.getElementById('leftPanels') const shouldHide = !leftPanel || leftPanel.childElementCount === 0; console.log(shouldHide) if (shouldHide) { if (leftPanel) { leftPanel.style.display = 'none'; } const contentPanel = document.querySelector('#contentcolumn > .main'); if (contentPanel

code

Located in
Property value
const testPattern = /^\[[+-]?\d+(\.\d+)?\]/; function replaceNodeText(from) { if (from.nodeType === 3) { const text = from.textContent; if (testPattern.test(text)) { from.textContent = text.replace(testPattern, "").trim(); } } else if (from.childNodes) { for (const element of

code

Located in
Property value
handleExportClick(event) { if (event.target.hasAttribute("disabled")) { event.stopImmediatePropagation
= []; } setInterval(() => { const modal = document.getElementById("exportModal"); if (modal) { const isOpen = modal.style.display === "block"; if (isOpen && !opened) { onShow(modal

code

Located in
Property value
/* Administration application custom JavaScript */ document.observe('xwiki:dom:loaded', function() { if($('goto-select')) { Event.observe($('goto-select'), 'change', function (event) { var select = event.element(); var i = select.selectedIndex; if (window.location != select.options

code

Located in
Property value
const {pathname} = window.location; if (pathname.startsWith('/bin/loginsubmit') || pathname.startsWith('/bin/login')) { document.title = 'Login - akaBot Docs'; }

code

Located in
Property value
const overviewLink = document.querySelector(".space.dropdown > a[href='/bin/view/Overview/']"); if (overviewLink && overviewLink.parentElement) { overviewLink.parentElement.classList.add('breadcrumb--disabled'); }

XWiki.JavaScriptExtension[2]

Located in
Objects
code : const testPattern = /^\[[+-]?\d+(\.\d+)?\]/; function replaceNodeText(from) { if (from.nodeType === 3) { const text = from.textContent; if (testPattern.test(text)) { from.textContent = text.replace(testPattern, "").trim(); } } else if (from.childNodes) { for (const

XWiki.JavaScriptExtension[6]

Located in
Objects
= []; function handleExportClick(event) { if (event.target.hasAttribute("disabled")) { event
"); if (modal) { const isOpen = modal.style.display === "block"; if (isOpen && !opened) { onShow(modal); } else if (!isOpen && opened) { onHide(); } opened

XWiki.JavaScriptExtension[0]

Located in
Objects
code : const leftPanel = document.getElementById('leftPanels') const shouldHide = !leftPanel || leftPanel.childElementCount === 0; console.log(shouldHide) if (shouldHide) { if (leftPanel
'); if (contentPanel) { contentPanel.style.setProperty('margin-left', 0, 'important') } }
next page » Page 1 2
RSS feed for search on [if]
Created by admin on 2022/04/17 14:38