„MediaWiki:Common.js” változatai közötti eltérés

Innen: Tribalwars Wiki HU
Jump to navigation
Nincs szerkesztési összefoglaló
Nincs szerkesztési összefoglaló
 
(11 közbenső módosítás, amit 3 másik szerkesztő végzett, nincs mutatva)
1. sor: 1. sor:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */


document.write("<script src='/index.php?title=Global.js&action=raw&smaxage=0&ctype=text/javascript' type='text/javascript'></script>");
/*document.write("<script src='/index.php?title=Global.js&action=raw&smaxage=0&ctype=text/javascript' type='text/javascript'></script>");


importScript_ = importScript
importScript_ = importScript
53. sor: 53. sor:
});
});


console.log ("sidebar ready");
*/




/*
// Halloween 2013 (by Menidan)
if (location.pathname == "/wiki/Hauptseite" && ! localStorage.getItem ("halloween-2013")) {
localStorage.setItem ("halloween-2013", "delete this entry to show the window again");
var overlay = $ ('<div></div>').appendTo (document.body);
overlay.css ({
"background-color": "black",
"background-position": "center",
"background-size": "contain",
"background-repeat": "no-repeat",
"background-attachment": "fixed",
"backgound-image": "url(/images/e/ea/Test.gif)",
position: "absolute",
left: 0,
right: 0,
top: 0,
bottom: 0,
"z-index": 10
});
overlay [0].style.backgroundImage = "url(/images/e/ea/Test.gif)";
$ (document.body).css ("overflow", "hidden");


var close_button = $ ('<a href="#"><img src="/images/7/75/Grepolis_Wiki_307.png" /></a>').appendTo (overlay).css ({
// Rewrite of announcement display. (by Menidan)
position: "absolute",
$ (function () {
top: "10px",
// Changes the announcement to the next announcement in the list.
right: "10px"
function changeAnnouncement () {
}).click (function () {
  $ (announcementList [currentAnnouncement]).fadeOut ("normal", function () {
$ (document.body).css ("overflow", "");
  ++currentAnnouncement;
overlay.remove ();
  if (currentAnnouncement >= announcementList.length)
$ (audio).remove ();
    currentAnnouncement = 0;
});
  $ (announcementList [currentAnnouncement]).fadeIn ();
  });
}


var audio = $ ('<audio preload="preload" autostart="autostart"><source src="http://www.horror-grusel.de/horror0407/sounds/hexe.wav" /></audio>').appendTo (overlay) [0];
var announcementList = $ (".announcement");
audio.addEventListener ("load", function () {
var currentAnnouncement = 0;
alert ("loaded");
var announcementVisibilityTime = 5000; // ms
audio.play ();
});
audio.addEventListener ("ended", function () {
setTimeout (function () {
audio.currentTime = 0;
audio.play ();
}, 1); // die 1 durch beliebige Anzahl an Millisekunden zwischen dem einzelnen Abspielen des Geräusches ersetzen
});
audio.load ();
audio.play ();
} */


announcementList.hide ();
if (announcementList.length > 1) {
  $ (announcementList [0]).fadeIn ();
  setInterval (changeAnnouncement, announcementVisibilityTime);
} else if (announcementList.length > 0)
  announcementList.fadeIn ();




// Simple Culture Point Calculator
// Piwik is undefined -> comment it out.
(function () {
/*
function is_right_page () {
try {
if (location.pathname == "/wiki/Kulturpunkte")
  var piwikTracker = Piwik.getTracker (pkBaseURL + "piwik.php", 2);
return true;
  piwikTracker.trackPageView ();
if (location.pathname != "/index.php")
  piwikTracker.enableLinkTracking ();
return false;
} catch (err) {}
var query = location.search.substring (1).split ("&").map (function (s) { return s.split ("="); });
*/
if (! query.find (function (s) { return s [0] == "title" && s [1] == "Kulturpunkte"; }))
});
return false;
return ! query.find (function (s) { return s [0] == "action" && s [1] != "view"; });
}
if (! is_right_page ())
return;


var table = $ ("table.wikitable");
// ?
var tr = $ ("<tr>").insertAfter (table.find ("tr:first"));
var importScript_ = importScript;
function level_from_points (points) { return Math.floor (3 / 2 + Math.sqrt (1 / 4 + 2 / 3 * points)); }
function points_from_level (level) { return Math.floor (3 / 2 * (level - 1) * (level - 2)); }
var level  = $ ('<input type="text" value="5" />').bind ("propertychange keyup input paste", function () {
points.val (points_from_level (level.val ()));
}).appendTo ($ ("<th>").appendTo (tr));
var points = $ ('<input type="text" value="18" />').bind ("propertychange keyup input paste", function () {
level.val (level_from_points (points.val ()));
}).appendTo ($ ("<th>").appendTo (tr));
}) ();
 
 
 
<script language="javascript">
function toggle() {
var ele = document.getElementById("toggleText");
var text = document.getElementById("displayText");
if(ele.style.display == "block") {
    ele.style.display = "none";
text.innerHTML = "show";
  }
else {
ele.style.display = "block";
text.innerHTML = "hide";
}
}
</script>

A lap jelenlegi, 2019. szeptember 29., 13:21-kori változata

/* Any JavaScript here will be loaded for all users on every page load. */

/*document.write("<script src='/index.php?title=Global.js&action=raw&smaxage=0&ctype=text/javascript' type='text/javascript'></script>");

importScript_ = importScript


// Makes the sidebar foldable (by Menidan)
var sidebar_settings = JSON.parse (localStorage.getItem ("sidebar_settings")) || {};

function save_sidebar () {
	localStorage.setItem ("sidebar_settings", JSON.stringify (sidebar_settings));
}

function set_sidebar (id, folded) {
	if (document.getElementById (id).parentElement.id != "column-one")
		return;
	if (folded)
		sidebar_settings [id] = true;
	else
		delete sidebar_settings [id];
	save_sidebar ();
}

var fold = "http://wiki.de.grepolis.com/images/7/7e/Einklappen.png";
var unfold = "http://wiki.de.grepolis.com/images/0/06/Ausklappen.png";
function sidebar_click (node) {
	var content = $ (node.parentElement.lastElementChild);
	if (content.css ("display") == "none") {
		content.css ("display", "block");
		node.firstElementChild.alt = "[-]";
		node.firstElementChild.src = fold;
		set_sidebar (node.parentElement.id, false);
	} else {
		content.css ("display", "none");
		node.firstElementChild.alt = "[+]";
		node.firstElementChild.src = unfold;
		set_sidebar (node.parentElement.id, true);
	}
	return false;
}

var sidebar_links = $ ("#column-one .generated-sidebar.portlet h5").slice (1).replaceWith (function () {
	if (! sidebar_settings [this.parentElement.id])
		return $ ('<a href="#" style="text-align:center"><img src="' + fold + '" style="float:left" alt="[-]" /><h5>' + this.innerHTML + '</h5></a>').click (function () {
			return sidebar_click (this);
		});

	$ (this.nextElementSibling).css ("display", "none");
	return $ ('<a href="#" style="text-align:center"><img src="' + unfold + '" style="float:left" alt="[+]" /><h5>' + this.innerHTML + '</h5></a>').click (function () {
		return sidebar_click (this);
	});
});

console.log ("sidebar ready");
*/



// Rewrite of announcement display. (by Menidan)
$ (function () {
 // Changes the announcement to the next announcement in the list.
 function changeAnnouncement () {
  $ (announcementList [currentAnnouncement]).fadeOut ("normal", function () {
   ++currentAnnouncement;
   if (currentAnnouncement >= announcementList.length)
    currentAnnouncement = 0;
   $ (announcementList [currentAnnouncement]).fadeIn ();
  });
 }

 var announcementList = $ (".announcement");
 var currentAnnouncement = 0;
 var announcementVisibilityTime = 5000; // ms

 announcementList.hide ();
 if (announcementList.length > 1) {
  $ (announcementList [0]).fadeIn ();
  setInterval (changeAnnouncement, announcementVisibilityTime);
 } else if (announcementList.length > 0)
  announcementList.fadeIn ();


 // Piwik is undefined -> comment it out.
 /*
 try {
  var piwikTracker = Piwik.getTracker (pkBaseURL + "piwik.php", 2);
  piwikTracker.trackPageView ();
  piwikTracker.enableLinkTracking ();
 } catch (err) {}
 */
});

// ?
var importScript_ = importScript;