Contenuto cancellato Contenuto aggiunto
|
|
(79 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", true);
menu.options[menu.length] = new Option("Cron", "Modifica", "http://it.wikipedia.org/w/index.php?title="+wgPageName+"&action=history");
Box.appendChild(menu);
var p = document.createElement("BUTTON");
p.value = "Ok";
p.onclick = openWindow;
Box.appendChild(p);
return;
}
function openWindow()
{
aaa = document.getElementById("menuVeloce").value;
window.open(document.getElementById("menuVeloce").value);
}
addOnloadHook(FastOpen);
|