MediaWiki

Foreground.js: Difference between revisions

From Grouse House Wiki

No edit summary
No edit summary
Line 110: Line 110:
         $spliturl = $url.split(':');
         $spliturl = $url.split(':');


         var main = $url.indexOf("Main");
         var main = $spliturl.indexOf("Main");
         if(main !== -1){  
         if(main !== -1){  
           $(this).children('div').children('a').css("display", "none");
           $(this).children('div').children('a').css("display", "none");
Line 116: Line 116:
         $talklink = "https://grousehouse.wiki/Talk:" + $pagetitle;
         $talklink = "https://grousehouse.wiki/Talk:" + $pagetitle;
         $link = $(this).children('div').children('a');
         $link = $(this).children('div').children('a');
         $link.attr("href", $talklink);
         $link.attr("href", $talklink);
}
    });
});
/* Removing discussion link from certain pages
$(function() {
    $('h1#firstHeading').each(function () {
        var $header = $(this).children('span').html();
        var upload = $header.indexOf("Upload");
        if(upload !== -1){
            $(this).children('div').children('a').css("display", "none");
        } else{
        return;
         }
         }


         var logout = $header.indexOf("Log");
         var special = $spliturl.indexOf("Special");
         if(logout !== -1){
         if(special !== -1){  
            $(this).children('div').children('a').css("display", "none");
          $(this).children('div').children('a').css("display", "none");
         } else{
         } else{
         return;
         $talklink = "https://grousehouse.wiki/Talk:" + $pagetitle;
        }
         $link = $(this).children('div').children('a');
 
         $link.attr("href", $talklink);
        var mediawiki = $header.indexOf("Mediawiki");
         if(mediawiki !== -1){
            $(this).children('div').children('a').css("display", "none");
        } else{
        return;  
         }
 
        var editing = $header.indexOf("Editing");
        if(editing !== -1){
            $(this).children('div').children('a').css("display", "none");
        } else{
        return;  
         }
         }
     });
     });
  });
  });
$(function() {
    $('h1#firstHeading').each(function () {
        $url = $(location).attr('href');
        var main = $url.indexOf("Main");
        if(main !== -1){
            $(this).children('div').children('a').css("display", "none");
        } else{
        return;
        }
    });
});*/

Revision as of 23:46, 15 February 2024

/* Collapsible Headers */

var coll = document.getElementsByClassName("c-header");
var i;

for (i = 0; i < coll.length; i++) {
  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() {
    $('h3.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() {
    $('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('_');
        $url = $(location).attr('href');
        $spliturl = $url.split(':');

        var main = $spliturl.indexOf("Main");
        if(main !== -1){ 
           $(this).children('div').children('a').css("display", "none");
        } else{
        $talklink = "https://grousehouse.wiki/Talk:" + $pagetitle;
        $link = $(this).children('div').children('a');
        $link.attr("href", $talklink);
        }

        var special = $spliturl.indexOf("Special");
        if(special !== -1){ 
           $(this).children('div').children('a').css("display", "none");
        } else{
        $talklink = "https://grousehouse.wiki/Talk:" + $pagetitle;
        $link = $(this).children('div').children('a');
        $link.attr("href", $talklink);
        }
    });
 });