MediaWiki:Skin/Projekt:Adventure/459.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(für Düne) |
K |
||
(3 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
− | var CODE = " | + | var CODE = "Gaibrasch Triebwut"; // |
− | var | + | var RICH = "Projekt:Adventure/525"; // |
− | var | + | var FALS = "Projekt:Adventure/524"; // |
// Damit man nur mit Passwort reinkommt | // Damit man nur mit Passwort reinkommt | ||
Zeile 7: | Zeile 7: | ||
addOnloadHook( function () { | addOnloadHook( function () { | ||
// INIT | // INIT | ||
− | document.getElementById("eingabe2").innerHTML=("<form action='#' id='form2'><input id='ef2' type='text'></input> <input type='submit' value=' | + | document.getElementById("eingabe2").innerHTML=("<form action='#' id='form2'><input id='ef2' type='text'></input> <input type='submit' value='Versuchen' id='okbtn2'/></form>"); |
document.getElementById("form2").onsubmit = function () { | document.getElementById("form2").onsubmit = function () { | ||
if (document.getElementById("ef2").value == CODE) | if (document.getElementById("ef2").value == CODE) | ||
{ | { | ||
// Richtiges Passwort | // Richtiges Passwort | ||
− | location.href = wgScript+"?title="+encodeURI( | + | location.href = wgScript+"?title="+encodeURI(RICH); |
} | } | ||
else | else | ||
Zeile 18: | Zeile 18: | ||
// Falsch geraten | // Falsch geraten | ||
− | location.href = wgScript+"?title="+encodeURI( | + | location.href = wgScript+"?title="+encodeURI(FALS); |
} | } | ||
− | |||
return false; // Für den IE | return false; // Für den IE | ||
} | } | ||
}); | }); |
Aktuelle Version vom 26. Juni 2011, 20:58 Uhr
var CODE = "Gaibrasch Triebwut"; //
var RICH = "Projekt:Adventure/525"; //
var FALS = "Projekt:Adventure/524"; //
// Damit man nur mit Passwort reinkommt
addOnloadHook( function () {
// INIT
document.getElementById("eingabe2").innerHTML=("<form action='#' id='form2'><input id='ef2' type='text'></input> <input type='submit' value='Versuchen' id='okbtn2'/></form>");
document.getElementById("form2").onsubmit = function () {
if (document.getElementById("ef2").value == CODE)
{
// Richtiges Passwort
location.href = wgScript+"?title="+encodeURI(RICH);
}
else
{
// Falsch geraten
location.href = wgScript+"?title="+encodeURI(FALS);
}
return false; // Für den IE
}
});