MediaWiki:Skin/Projekt:Adventure2/init.js: Unterschied zwischen den Versionen

aus Kamelopedia, der wüsten Enzyklopädie
Zur Navigation springen Zur Suche springen
(AZ: Die Seite wurde neu angelegt.)
 
 
(4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
addOnloadHook(function(){
+
kp.loader.using([
     a2.loadPage(1);
+
"[[MediaWiki:Skin/Projekt:Adventure2/lib.js]]",
 +
"[[MediaWiki:Skin/JQuery.Ui.js]]",
 +
"[[MediaWiki:Skin/Projekt:Adventure2/parser.js]]",
 +
$().ready
 +
], function(){
 +
     if (location.hash.length > 1) {
 +
        a2.stateDecode(a2.crypt(location.hash.substr(1)));
 +
    } else {
 +
        a2.loadPage(1);
 +
    }
 
  });
 
  });
 +
 +
kp.loader.using([
 +
"[[MediaWiki:Skin/Projekt:Adventure2/lib.js]]",
 +
"[[MediaWiki:Skin/JQuery.Ui.js]]",
 +
"[[MediaWiki:Skin/Projekt:Adventure2/parser.js]]"
 +
], function(){
 +
window.setInterval(function () {
 +
  if ( a2.latestHash != location.hash) {
 +
    $("#a2loader").show();
 +
    a2.stateDecode(a2.crypt(location.hash.substr(1)))
 +
    }
 +
}, 1000);
 +
});

Aktuelle Version vom 22. Juli 2015, 22:16 Uhr

kp.loader.using([
		"[[MediaWiki:Skin/Projekt:Adventure2/lib.js]]",
		"[[MediaWiki:Skin/JQuery.Ui.js]]",
		"[[MediaWiki:Skin/Projekt:Adventure2/parser.js]]",
		$().ready
	], function(){
     if (location.hash.length > 1) {
         a2.stateDecode(a2.crypt(location.hash.substr(1)));
     } else {
         a2.loadPage(1);
     }
 });

kp.loader.using([
		"[[MediaWiki:Skin/Projekt:Adventure2/lib.js]]",
		"[[MediaWiki:Skin/JQuery.Ui.js]]",
		"[[MediaWiki:Skin/Projekt:Adventure2/parser.js]]"
	], function(){
	 window.setInterval(function () {
	   if ( a2.latestHash != location.hash) {
	     $("#a2loader").show();
	     a2.stateDecode(a2.crypt(location.hash.substr(1)))
	     }
	 }, 1000);
});