MediaWiki:Common.js

Z Wiki The-West PL
Przejdź do nawigacji

Uwaga: aby zobaczyć zmiany po opublikowaniu, może zajść potrzeba wyczyszczenia pamięci podręcznej przeglądarki.

  • Firefox / Safari: Przytrzymaj Shift podczas klikania Odśwież bieżącą stronę, lub naciśnij klawisze Ctrl+F5, lub Ctrl+R (⌘-R na komputerze Mac)
  • Google Chrome: Naciśnij Ctrl-Shift-R (⌘-Shift-R na komputerze Mac)
  • Internet Explorer / Edge: Przytrzymaj Ctrl, jednocześnie klikając Odśwież, lub naciśnij klawisze Ctrl+F5
  • Opera: Naciśnij klawisze Ctrl+F5.
mw.loader.using('jquery.ui.accordion', function () {
  jQuery(document).ready(function ($) {
    //$('.tabs').tabs().addClass('ui-tabs-vertical ui-helper-clearfix');
    //$('.tabs li').removeClass('ui-corner-top').addClass('ui-corner-left');
    //$('#accordion').accordion({ collapsible: true, active: false, 'role': 'tab' });
    $('#accordion').accordion({ 'role': 'tabpanel' });
    //$('#accordion').tabs().addClass('ui-tabs-vertical ui-helper-clearfix');
    //$('#accordion li').removeClass('ui-corner-top').addClass('ui-corner-left');
  });
});

var nr_intrebari = 4;
var anunt_list
var nr_anunturi
var anunt_curent
var anunt_timer, hint_timer;

function ch_hints() {
   var hint_nr=Math.round(Math.random()*nr_intrebari);
   $("#west_pl_hints").slideUp("slow");
   $.get("/index.php",{title:"Szablon:Porady ",action:"raw",section:hint_nr}, function(response,succes) {
      if (succes) {
      resp= "__NOEDITSECTION__" + response
      $.get("/api.php",{action:"parse",text:resp,format:"xml"},function(xresp,succ) {
          if (succ) {
              $("#west_pl_hints").html(xresp.getElementsByTagName("text")[0].childNodes[0].nodeValue);
          }
      },"xml");
      };
},"html");
   $("#west_pl_hints").slideDown("slow");
}

function ch_anunt() {
        $(anunt_list[anunt_curent]).fadeOut("normal",function() {
             anunt_curent++;
             if (anunt_curent >= nr_anunturi) {
                 anunt_curent=0;
             }
             $(anunt_list[anunt_curent]).fadeIn();
        });
}


$(document).ready(function() {
$(".anunt_primapagina").hide();
   anunt_list = $(".anunt_primapagina").toArray();
   nr_anunturi=anunt_list.length;
   anunt_curent=0;
   console.info("a:"+anunt_list+"; nr:"+nr_anunturi);
   if (nr_anunturi > 1) {
       $(anunt_list[0]).fadeIn();
       anunt_timer=window.setInterval("ch_anunt()",10000);
   } else {
       if (nr_anunturi > 0) {
            $(".anunt_primapagina").fadeIn();
        }
   }   



   if ((wgAction != "edit") && (wgCanonicalNamespace != "Special") && (wgCanonicalNamespace != "Template") && (wgCanonicalNamespace != "Help") && (wgCanonicalNamespace != "Project") && (wgCanonicalNamespace != "File") && (wgTitle != "Global.js") && (wgTitle != "Szablon:Porady") ) {
$("#content").before("<div style='clear:both'></div><div id='west_pl_hints_container' style='padding: 10px 15px; background: url(&quot;/skins/thewest/images/content/contentBg.png&quot;) repeat scroll 0% 0% transparent; width: 610px; min-height:100px; text-align: center;'><a title='Zamknij' href='#' id='west_pl_close_hints'><img style='float:right; height:26px; width:33px;' src='http://wiki.the-west.pl/images/a/a5/X.png' /></a><img id='west_pl_hints_image' style='position:relative; float:right; height:75px; width:75; top:35px; left:0px;' src='http://wiki.the-west.pl/images/1/1c/Znak_zapytania.png' alt='Porady' /> <span id='west_pl_hints' style='width:80%'></span></div>");
   ch_hints();
   hint_timer=window.setInterval("ch_hints()",30000);
   $("#west_pl_close_hints").click(function() {
        hint_timer=window.clearInterval(hint_timer);
        $("#west_pl_hints").slideUp("slow", function() {
             $("#west_pl_close_hints").hide();
             $("#west_pl_hints_image").hide();
             $("#west_pl_hints_container").css("min-height","0px");
        });
   });
        
   }
  if ((wgTitle == "Global.js") && (wgAction != "edit") && (wgAction != "history") && (wgAction != "historysubmit") && (wgAction != "protect") && (wgAction != "unprotect")) {
     $("#bodyContent").html("<p>Ekipa <a href='http://the-west.pl'>The West.pl</a>!</p>");
    }


});