MediaWiki

Foreground.js: Difference between revisions

From Grouse House Wiki

No edit summary
No edit summary
 
(34 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;
    if (content.style.display === "block") {
      content.style.display = "none";
      if (this.classList.contains("active")) {
        this.classList.remove("active");
        this.classList.add("hidden");
      } else {
        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() {
    $('h2.c-header.active span.mw-headline').each(function () {
        var $header = $(this);
        var $headername = $header.html();
        $headernameu = $headername.split(' ').join('_');
 
        var $secondheader = "#" + $headernameu + "_2";
 
        $("a[href*='" + $secondheader + "']").hide();
    });
});
 
$(function() {
    $('h2.c-header.hidden span.mw-headline').each(function () {
        var $header = $(this);
        var $headername = $header.html();
        $headernameu = $headername.split(' ').join('_');
 
        var $secondheader = "#" + $headernameu + "_2";
 
        $("a[href*='" + $secondheader + "']").hide();
    });
});
 
$(function() {
    $('h2.h-static span.mw-headline').each(function () {
        var $header = $(this);
        var $headername = $header.html();
        $headernameu = $headername.split(' ').join('_');
 
        var $secondheader = "#" + $headernameu + "_2";


        $("a[href*='" + $secondheader + "']").hide();
function scrollFunction() {
    });
  if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
});
     scrollbutton.style.display = "block";
 
     sidebarlogo.style.display = "block";
$(function() {
  } else {
    $('h3.c-header.active span.mw-headline').each(function () {
     scrollbutton.style.display = "none";
        var $header = $(this);
     sidebarlogo.style.display = "none";
        var $headername = $header.html();
        $headernameu = $headername.split(' ').join('_');
 
        var $secondheader = "#" + $headernameu + "_2";
 
        $("a[href*='" + $secondheader + "']").hide();
     });
});
 
$(function() {
    $('h3.c-header.hidden span.mw-headline').each(function () {
        var $header = $(this);
        var $headername = $header.html();
        $headernameu = $headername.split(' ').join('_');
 
        var $secondheader = "#" + $headernameu + "_2";
 
        $("a[href*='" + $secondheader + "']").hide();
     });
});
 
$(function() {
    $('h3.h-static span.mw-headline').each(function () {
        var $header = $(this);
        var $headername = $header.html();
        $headernameu = $headername.split(' ').join('_');
 
        var $secondheader = "#" + $headernameu + "_2";
 
        $("a[href*='" + $secondheader + "']").hide();
    });
});
 
/* Adding link to discussion button */
 
$(function() {
     $('h1#firstHeading').each(function () {
        var $header = $(this).children('span').html();
        $pagetitle = $header.split(' ').join('_');
 
        $talklink = "https://grousehouse.wiki/Talk:" + $pagetitle;
 
        $link = $(this).children('div').children('a');
        $link.attr("href", $talklink);
     });
});
 
/* Hiding talk button if it's a Special page */
 
var headers = document.getElementsById("firstHeading");
var j;
 
for (j = 0; j < coll.length; j++) {
  var talklink = this.getElementsByTagName('a');
  if talklink.includes(':') {
    talklink.style.display = "none";
   }
   }
  else {
  return
}
}
   });
 
function topFunction() {
   document.body.scrollTop = 0;
  document.documentElement.scrollTop = 0;
}
}

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;
}