Global.js: Różnice pomiędzy wersjami

Z Wiki The-West PL
Przejdź do nawigacji
Nie podano opisu zmian
m (Zabezpieczył Global.js (‎[edit=sysop] (na zawsze) ‎[move=sysop] (na zawsze)))
(Brak różnic)

Wersja z 16:53, 6 gru 2012

var nr_intrebari = 65; 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= "" + 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("

<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/b/b4/Tw-wiki.png' alt='Porady' />

");

  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("

Pentru evitarea eventualelor neplaceri am restrictionat accesul la aceasta pagina!
Documentare placuta in continuare!

Echipa <a href='http://the-west.pl'>The West.pl</a>!

");

   }


});