Contenuto cancellato Contenuto aggiunto
|
|
(76 versioni intermedie di 3 utenti non mostrate) |
buttonPurge = 1
/* barra di modifica */
function FastOpen() {
var Box = document.getElementById("searchBody");
if (!Box) return;
var menu = document.createElement("select");
menu.id = "menuVeloce";
menu.options[menu.length] = new Option("Modifica", "http://it.wikipedia.org/w/index.php?title="+wgPageName+"&action=edit");
menu.options[menu.length] = new Option("Cron", "http://it.wikipedia.org/w/index.php?title="+wgPageName+"&action=history");
menu.options[0].selected = true;
Box.appendChild(menu);
var p = document.createElement("BUTTON");
var buttext = document.createTextNode('Ok');
p.appendChild(buttext);
p.onclick = openWindow;
Box.appendChild(p);
return;
}
function openWindow()
{
window.open(document.getElementById("menuVeloce").value);
}
addOnloadHook(FastOpen);
|