MediaWiki

Foreground.js: Difference between revisions

From Grouse House Wiki

No edit summary
No edit summary
 
(40 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Collapsible Headers */
/* Scroll to top and sidebar logo */


var coll = document.getElementsByClassName("c-header");
var scrollbutton = document.getElementById("scrollToTop");
var i;
var sidebarlogo = document.getElementById("sidebarlogo");


for (i = 0; i < coll.length; i++) {
window.onscroll = function() {scrollFunction()};
  coll[i].addEventListener("click", function() {
 
    var content = this.nextElementSibling;
function scrollFunction() {
    if (content.style.display === "block") {
  if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
      content.style.display = "none";
    scrollbutton.style.display = "block";
      if (this.classList.contains("active")) {
    sidebarlogo.style.display = "block";
        this.classList.remove("active");
  } else {
        this.classList.add("hidden");
    scrollbutton.style.display = "none";
      } else {
     sidebarlogo.style.display = "none";
        this.classList.add("hidden");
   }
      }
     } else {
      content.style.display = "block";
      if (this.classList.contains("hidden")) {
        this.classList.remove("hidden");
        this.classList.add("active");
      } else {
        this.classList.add("active");
      }
    }
   });
}
}


/* Remove extra headers from edit button fix */
function topFunction() {
 
  document.body.scrollTop = 0;  
$(function() {
  document.documentElement.scrollTop = 0;
    $('h2.c-header.active span.mw-headline').each(function () {
}
        var $header = $(this);
        var $headername = $header.html();
        $headernameu = $headername.split(' ').join('_');
 
        var $secondheader = "#" + $headernameu + "_2";
 
        var $editsection = $( $secondheader ).next().children('a').attr("href");
       
        $toclink = "https://grousehouse.wiki/" + $pagenameu + $secondheader;
 
        $("a[href*='" + $secondheader + "']").hide();
    });
});

Latest revision as of 01:43, 1 April 2024

/* Scroll to top and sidebar logo */

var scrollbutton = document.getElementById("scrollToTop");
var sidebarlogo = document.getElementById("sidebarlogo");

window.onscroll = function() {scrollFunction()};

function scrollFunction() {
  if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
    scrollbutton.style.display = "block";
    sidebarlogo.style.display = "block";
  } else {
    scrollbutton.style.display = "none";
    sidebarlogo.style.display = "none";
  }
}

function topFunction() {
  document.body.scrollTop = 0; 
  document.documentElement.scrollTop = 0;
}