Diferencia entre revisiones de «MediaWiki:Common.js»
Ir a la navegación.
Sin resumen de edición |
Sin resumen de edición |
||
Línea 24: | Línea 24: | ||
if ($('#navbar').length !== 0) { | if ($('#navbar').length !== 0) { | ||
$('#navbar a').removeAttr("title"); | $('#navbar a').removeAttr("title"); | ||
} | |||
// Meter videos de youtube | |||
if ($('.youtube_video').length !== 0) { | |||
$('.youtube_video').each(function() { | |||
$(this).html('<iframe width="100%" height="100%" src="https://www.youtube.com/embed/' + $(this).attr('data-id') + '?cc_load_policy=1&cc_lang_pref=' + $(this).attr('data-subtitles') + '" frameborder="0" allowfullscreen></iframe>'); | |||
}); | |||
} | } |
Revisión del 13:10 9 may 2018
//Ocultamos codigo javascript de la vista de los usuarios. /* //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. //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"); } // Meter videos de youtube if ($('.youtube_video').length !== 0) { $('.youtube_video').each(function() { $(this).html('<iframe width="100%" height="100%" src="https://www.youtube.com/embed/' + $(this).attr('data-id') + '?cc_load_policy=1&cc_lang_pref=' + $(this).attr('data-subtitles') + '" frameborder="0" allowfullscreen></iframe>'); }); }