Lines Matching +full:- +full:- +full:-

1 // -----------------------------------------------------------------------------
3 // -----------------------------------------------------------------------------
16 this._delimiter = ( window.location.search.indexOf(":") > -1 ? ":" : "/");
20 // -----------------------------------------------------------------------------
22 // -----------------------------------------------------------------------------
42 …document.body.setAttribute("data-contentlang", document.body.getAttribute("data-id").split(":")[0]…
80 // -----------------------------------------------------------------------------
97 …if (!isFound && (elem.getAttribute("data-wiki-id") === JSINFO["id"] || elem.getAttribute("data-wik…
130 // -----------------------------------------------------------------------------
133 * Re-collect page links from the side bar and refresh next/prev buttons.
166 // -----------------------------------------------------------------------------
176 …ia_query")).getPropertyValue("--media-query").trim() || getComputedStyle(document.querySelector("#…
180 // -----------------------------------------------------------------------------
202 // -----------------------------------------------------------------------------
217 i.classList.remove("fa-plus-square");
218 i.classList.add("fa-minus-square");
228 // -----------------------------------------------------------------------------
259 // -----------------------------------------------------------------------------
274 i.classList.remove("fa-minus-square");
275 i.classList.add("fa-plus-square");
284 // -----------------------------------------------------------------------------
304 // -----------------------------------------------------------------------------
324 // -----------------------------------------------------------------------------
343 // -----------------------------------------------------------------------------
345 // -----------------------------------------------------------------------------
357 selector = selector || ".aside > #sidebar a[data-wiki-id]";
366 // -----------------------------------------------------------------------------
392 // -----------------------------------------------------------------------------
411 // -----------------------------------------------------------------------------
461 // -----------------------------------------------------------------------------
477 // Insert +/- fontawesome icon and image
478 …hildren[0].insertAdjacentHTML("afterbegin", '<div class="btn-expand"><i class="far fa-minus-square…
503 // -----------------------------------------------------------------------------
519 …(href.substring(0,1) == "#" || elem.getAttribute("title") == document.body.getAttribute("data-id"))
532 // -----------------------------------------------------------------------------
558 window.scrollTo(0, window.pageYOffset + top - headerHeight);
563 // -----------------------------------------------------------------------------
590 // -----------------------------------------------------------------------------
599 document.getElementById("btn-mobilemenu").addEventListener("click", function(){
605 // -----------------------------------------------------------------------------
620 document.getElementById("btn-prevpage").classList.remove("invisible");
621 document.getElementById("btn-prevpage").href = this._pages[currentPageIndex - 1];
625 if (currentPageIndex > -1 && currentPageIndex < this._pages.length - 1)
627 document.getElementById("btn-nextpage").classList.remove("invisible");
628 document.getElementById("btn-nextpage").href = this._pages[currentPageIndex + 1];
633 // -----------------------------------------------------------------------------