Відмінності між версіями «MediaWiki:Common.js»

Матеріал з Ymirheim Wiki
м
 
Рядок 10: Рядок 10:
a.style = 'display: block; margin: 20px 0;';
a.style = 'display: block; margin: 20px 0;';
var img = document.createElement('img');
var img = document.createElement('img');
img.src = "https://forum.ymirheim.org/uploads/default/original/2X/1/19ee4f9fe1e6a0c3286d40c55f5c80465fadad01.png";
img.src = "https://ymirheim.org/files/images/19ee4f9fe1e6a0c3286d40c55f5c80465fadad01.png";
img.style = 'width: 100%; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);';
img.style = 'width: 100%; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);';
img.alt = "";
img.alt = "";

Поточна версія на 15:09, 25 травня 2022

/* Any JavaScript here will be loaded for all users on every page load. */
(function(){
	var doc = document.getElementById('mw-content-wrapper');
	if (doc) {
		doc.style = 'padding-top: 48px;';
		var a = document.createElement('a');
		a.href="https://supportukrainenow.org/";
		a.target="_blank";
		a.rel = "noindex nofollow";
		a.style = 'display: block; margin: 20px 0;';
		var img = document.createElement('img');
		img.src = "https://ymirheim.org/files/images/19ee4f9fe1e6a0c3286d40c55f5c80465fadad01.png";
		img.style = 'width: 100%; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);';
		img.alt = "";
		a.append(img);
		doc.insertBefore(a, doc.firstChild);
	}
})();