Steven Universe Wiki

Te damos la bienvenida a la enciclopedia que sigue las aventuras de Steven y sus mágicas compañeras, las Gemas de Cristal.

LEE MÁS

Steven Universe Wiki
Advertisement
Steven Universe Wiki

Nota: Después de publicar, quizás necesite actualizar la caché de su navegador para ver los cambios.

  • Firefox/Safari: Mantenga presionada la tecla Shift mientras pulsa el botón Actualizar, o presiona Ctrl+F5 o Ctrl+R (⌘+R en Mac)
  • Google Chrome: presione Ctrl+Shift+R (⌘+Shift+R en Mac)
  • Internet Explorer/Edge: mantenga presionada Ctrl mientras pulsa Actualizar, o presione Ctrl+F5
  • Opera: Presiona Ctrl+F5.
(function(window, $, mw) {
  'use strict';
  function mediaTags($content) {
    $content.find('.html5-audio').each(function() {
      var esc = mw.html.escape,
        $this = $(this),
        options = esc($this.attr('data-options') || ''),
        src = esc($this.attr('data-src') || ''),
        type = esc($this.attr('data-type') || '');
      $this.html('<audio ' + options + '><source src="' + src + '" type="' + type + '"></audio>');
    });
    $content.find('.html5-video').each(function() {
      var esc = mw.html.escape,
        $this = $(this),
        width = esc($this.attr('data-width') || ''),
        height = esc($this.attr('data-height') || ''),
        options = esc($this.attr('data-options') || ''),
        src = esc($this.attr('data-src') || ''),
        type = esc($this.attr('data-type') || '');
      $this.html(
        '<video width="' +
          width +
          '" height="' +
          height +
          '" ' +
          options +
          '><source src="' +
          src +
          '" type="' +
          type +
          '"></video>'
      );
    });
  }
  mw.hook('wikipage.content').add(mediaTags);
})(window, jQuery, mediaWiki);

$('.norc').bind('contextmenu', function(e) {
    return false;
});

/* Tag de InactiveUsers */
InactiveUsers = { text: 'Inactivo/a' };
Advertisement