Hauptmenü öffnen

Memory Alpha Nova β

Änderungen

MediaWiki:Common.js

871 Bytes hinzugefügt, 17:30, 23. Okt. 2014
test
sidebarjs.attr('src', 'http://de.memory-alpha.org/wiki/MediaWiki:Fusion/scripts/Sidebar.js?action=raw&ctype=text/javascript');
$('head').append(sidebarjs);
});
})(jQuery);
 
(function ($) {
$(function() {
$('html').attr('xmlns:svg', "http://www.w3.org/2000/svg");
$('.region-info').each(function() {
var that = $(this);
var src = $('.fullMedia > a').attr('href');
var c = that.attr('title').split(' ');
 
svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
svg.setAttribute('width', 60);
svg.setAttribute('height', 80);
svg.setAttribute('preserveAspectRatio', 'none');
svg.setAttribute('viewBox', (c[0] - (c[2] / 2)) + ' ' + (c[1] - (c[3] / 2)) + ' ' + c[2] + ' ' + c[3]);
 
image = document.createElementNS("http://www.w3.org/2000/svg", "image");
image.setAttribute('width', 100);
image.setAttribute('height', 100);
image.setAttribute('preserveAspectRatio', 'none');
image.setAttributeNS('http://www.w3.org/1999/xlink', 'href', src);
$(image).appendTo(svg);
that.html(svg);
});
});
})(jQuery);
Anonymer Benutzer