Difference between revisions of "MediaWiki:Common.js"

From PokéHeroes Wiki
Jump to: navigation, search
Line 65: Line 65:
 
  $( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Eggs").children("a").text(randomHelp1);
 
  $( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Eggs").children("a").text(randomHelp1);
 
  $( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Eggs").children("a").attr('href', '/wiki/'+randomHelp1);
 
  $( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Eggs").children("a").attr('href', '/wiki/'+randomHelp1);
 +
 +
$( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Evolving-Pokemon").children("a").text(randomHelp2);
 +
$( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Evolving-Pokemon").children("a").attr('href', '/wiki/'+randomHelp2);
 +
 +
$( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Interacting").children("a").text(randomHelp3);
 +
$( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Interacting").children("a").attr('href', '/wiki/'+randomHelp3);

Revision as of 01:50, 12 December 2016

/* Any JavaScript here will be loaded for all users on every page load. */
/* If you are viewing this and want to try this code, and a ?external at the end of any page of the wiki :) */
var hash = document.URL.match(/external/g); 
var helper = document.getElementById("externalhelper");
if(!hash) {
} else {
     helper.innerHTML = 'Hello there!';
var text = ["Hello! I'm your friend, the Pokeheroes Wiki!!", "Don't be scared of me. I'm here to help you!", "Looks like you've been redirected here from our Main Site.",  "I'm going to give you some help while searching. Lets start!", "Do you see that box at the top? It is the search box. You can put text here and start searching.", "Try typing in a keyword. (Or anything you're looking for)", "This is the Sidebar, where are located all the categories", "So, next time you need help with sometimg, please take a look here :)"];
    var counter = 0;
    var elem = document.getElementById("changeText");
    function change() {
if(counter == '7') {
$("#searchform").css({ boxShadow: '0px 0px 0px rgba(231, 255, 0, 1)' });
$("#mw-panel").css({ boxShadow: '6px -3px 23px rgba(231, 255, 0, 1)' });
}
if(counter == '4') {
$("#searchform").css({ boxShadow: '0px 2px 20px rgba(231, 255, 0, 1)' });
  $( "#searchInput" ).focus();
}

$("#externalhelper").animate({"opacity": "0"}, "slow" );
     helper.innerHTML = text[counter];
$("#externalhelper").animate({"opacity": "1"}, "slow" );
        counter++;
        if(counter == '8') {     clearInterval(changeit); }
}
   var changeit = setInterval(change, 10000);
}



/* Change discussion link to report page */

var m = $("#ca-talk").children("span");
m.children("a").text("Report an error on this article");
m.children("a").attr('href', 'http://pokeheroes.com/forum_thread?id=4821');
$('#ca-talk').css("background-image", "url(http://i.imgur.com/FrK9rgl.png)");
m.children("a").attr('target','_blank');


/* Test for sidebar */
var HelpArray = [
    'BBCode',
'Busy Pokemon',
'Castform Weather',
'Chosen Pokémon',
'Eggs',
'Event Database',
'Evolving Pokemon',
'FAQ',
'Interacting',
'Legendary Pokémon',
'Mega Pokémon',
'Money',
'Premium Account',
'Retro Pokémon',
'Shiny Pokémon',
'Staff Members',
'Trainerlevel'
];
var randomHelp1 = HelpArray[Math.floor(Math.random()*HelpArray.length)];
var randomHelp2 = HelpArray[Math.floor(Math.random()*HelpArray.length)];
var randomHelp3 = HelpArray[Math.floor(Math.random()*HelpArray.length)];

 $( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Eggs").children("a").text(randomHelp1);
 $( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Eggs").children("a").attr('href', '/wiki/'+randomHelp1);

$( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Evolving-Pokemon").children("a").text(randomHelp2);
 $( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Evolving-Pokemon").children("a").attr('href', '/wiki/'+randomHelp2);

$( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Interacting").children("a").text(randomHelp3);
 $( "#p-Help" ).children( ".body" ).children( "ul" ).children("#n-Interacting").children("a").attr('href', '/wiki/'+randomHelp3);