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

aus Kamelopedia, der wüsten Enzyklopädie
Zur Navigation springen Zur Suche springen
 
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt)
Zeile 1: Zeile 1:
$(function(){
+
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) {
 
     if (location.hash.length > 1) {
 
         a2.stateDecode(a2.crypt(location.hash.substr(1)));
 
         a2.stateDecode(a2.crypt(location.hash.substr(1)));
Zeile 7: Zeile 12:
 
  });
 
  });
  
window.setInterval(function () {
+
kp.loader.using([
  if ( a2.latestHash != location.hash) {
+
"[[MediaWiki:Skin/Projekt:Adventure2/lib.js]]",
    $("#a2loader").show();
+
"[[MediaWiki:Skin/JQuery.Ui.js]]",
    a2.stateDecode(a2.crypt(location.hash.substr(1)))
+
"[[MediaWiki:Skin/Projekt:Adventure2/parser.js]]"
    }
+
], function(){
}, 1000);
+
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);
});