MediaWiki:Global.js

Da Wiki Grepolis IT.
Vai alla navigazione

Nota: dopo aver pubblicato, potrebbe essere necessario pulire la cache del proprio browser per vedere i cambiamenti.

  • Firefox / Safari: tieni premuto il tasto delle maiuscole Shift e fai clic su Ricarica, oppure premi Ctrl-F5 o Ctrl-R (⌘-R su Mac)
  • Google Chrome: premi Ctrl-Shift-R (⌘-Shift-R su un Mac)
  • Internet Explorer / Edge: tieni premuto il tasto Ctrl e fai clic su Aggiorna, oppure premi Ctrl-F5
  • Opera: premi Ctrl-F5.
ar anunt_list
var nr_anunturi
var anunt_curent
var anunt_timer, hint_timer;

function ch_hints() {
   var hint_nr=Math.round(Math.random()*45);
   $("#grepo_ro_hints").slideUp("slow");
   hint_nr++;
   $.get("/index.php",{title:"FAQ",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) {
              $("#grepo_it_hints").html(xresp.getElementsByTagName("text")[0].childNodes[0].nodeValue);
          }
      },"xml");
      };
},"html");
   $("#grepo_it_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()",5000);
   } 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 != "FAQ") ) {
$("#content").before("<div style='clear:both'></div><div id='grepo_it_hints_container' style='padding: 10px 15px; background: url(&quot;/skins/grepolis/content_bg.jpg&quot;) repeat scroll 0% 0% transparent; width: 772px; min-height:100px; text-align: center;'><a title='Chiudi' href='#' id='grepo_it_close_hints'><img style='float:right; height:20px; width:20px;' src='http://wiki.it.grepolis.com/images/2/2e/Close_btn.png' /></a><img id='grepo_it_hints_image' style='position:relative; float:right; height:75px; width:75; top:35px; left:0px;' src='http://wiki.it.grepolis.com/images/1/10/Faq_Button.png' alt='Ponturi' /> <span id='grepo_it_hints' style='width:80%'></span></div>");
   ch_hints();
   hint_timer=window.setInterval("ch_hints()",30000);
   $("#grepo_it_close_hints").click(function() {
        hint_timer=window.clearInterval(hint_timer);
        $("#grepo_it_hints").slideUp("slow", function() {
             $("#grepo_it_close_hints").hide();
             $("#grepo_it_hints_image").hide();
             $("#grepo_it_hints_container").css("min-height","0px");
        });
   });
        
   }
   
   if ((wgTitle == "Global.js") && (wgAction != "edit") && (wgAction != "history") && (wgAction != "historysubmit")) {
     $("#bodyContent").html("<p>Per evitare evenutali malintesi la pagina e stata bloccata!<br>Le altre pagina potranno essere visualizzate normalmente!</p><p>Team <a href='http://it.grepolis.com'>Grepolis.it</a>!</p>");
    }

try {
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 2);
piwikTracker.trackPageView();
piwikTracker.enableLinkTracking();
} catch( err ) {}

});