Diferencia entre revisiones de «MediaWiki:Common.js»

De Wiki The-West ES
Ir a la navegación.
Sin resumen de edición
Sin resumen de edición
Línea 46: Línea 46:
     $('#navbar a').removeAttr("title");
     $('#navbar a').removeAttr("title");
}
}
//Prueba
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_ro_hints").slideUp("slow");
  $.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) {
              $("#west_ro_hints").html(xresp.getElementsByTagName("text")[0].childNodes[0].nodeValue);
          }
      },"xml");
      };
},"html");
  $("#west_ro_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 != "Script:TheWest FAQ") ) {
$("#content").before("<div style='clear:both'></div><div id='west_ro_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='Inchide' href='#' id='west_ro_close_hints'><img style='float:right; height:26px; width:33px;' src='http://wiki.the-west.ro/images/a/a5/X.png' /></a><img id='west_ro_hints_image' style='position:relative; float:right; height:75px; width:75; top:35px; left:0px;' src='http://wiki.the-west.ro/images/b/b4/Tw-wiki.png' alt='Ponturi' /> <span id='west_ro_hints' style='width:80%'></span></div>");
  ch_hints();
  hint_timer=window.setInterval("ch_hints()",30000);
  $("#west_ro_close_hints").click(function() {
        hint_timer=window.clearInterval(hint_timer);
        $("#west_ro_hints").slideUp("slow", function() {
            $("#west_ro_close_hints").hide();
            $("#west_ro_hints_image").hide();
            $("#west_ro_hints_container").css("min-height","0px");
        });
  });
       
  }
  if ((wgTitle == "Global.js") && (wgAction != "edit") && (wgAction != "history") && (wgAction != "historysubmit") && (wgAction != "protect") && (wgAction != "unprotect")) {
    $("#bodyContent").html("<p>Pentru evitarea eventualelor neplaceri am restrictionat accesul la aceasta pagina!<br>Documentare placuta in continuare!</p><p>Echipa <a href='https://the-west.ro'>The West.ro</a>!</p>");
    }
});

Revisión del 00:10 19 dic 2017

//Ocultamos codigo javascript de la vista de los usuarios.

if(window.location.href.indexOf("MediaWiki:Common.js") > -1){

//alert(document.getElementByClass("mw-editinginterface").innerText);
//document.getElementById("mw-content-text").remove();

}


//Codigo para sortear claves de la wiki.
if(Math.floor(Math.random()* 1001) === 500 && window.location.href !== "https://wiki.the-west.es/wiki/MediaWiki:Common.js"){alert("¡Hola vaquero! Has sido seleccionado para obtener un premio, introduce el siguiente código (348fc78d) en el juego antes que nadie para obtenerlo.\n \nEs muy importante que no cierres esta ventana sin anotarte en algún sitio el código ya que luego no podrás recuperarlo.");}

//Codigo para implementar un canvas para cuando vayamos a usarlo.


if(false){

var canvas = document.createElement('canvas');
var div = document.getElementById('idDiv');
canvas.id = "CursorLayer";
canvas.width  = 1224;
canvas.height = 768;
canvas.style.zIndex   = 8;
canvas.style.position = "absolute";
canvas.style.border   = "1px solid";
div.appendChild(canvas) 

}

//Añadido para los popups de los items
if ($('.item_container').length!==0) {
    $('.item_container').each(function() {
        $(this).append('<img src="https://westes.innogamescdn.com/images/items/' + $(this).attr('data-url') + '">');
});
    $('.item_container[data-link]').each(function() {
        $(this).find('img').wrap('<a href="' + $(this).attr('data-link') + '"></a>');
    });
    $(function() {
        $.getScript("https://wiki.the-west.es/wiki/Popup.js?action=raw");
    });
} 
//Añadido para la barra de navegación 

if ($('#navbar').length !== 0) {
    $('#navbar a').removeAttr("title");
}