Wikipedia:Monobook.js/LiveRC.js: differenze tra le versioni
Contenuto cancellato Contenuto aggiunto
Nessun oggetto della modifica |
Nessun oggetto della modifica |
||
Riga 631:
//Select namespace (default = *)
if (typeof(checkNamespace)!="undefined" && checkNamespace == id)
options += '<option value="' + id + '" SELECTED >' + ns + '</option>';
else
Riga 1 579:
//Anteprima (default = not checked)
if (typeof(checkAnteprima)!="undefined" && checkAnteprima == "1")
lvPreviewFoot.innerHTML += '<input id="shidPrev" type="checkbox" checked onclick="showHideObj(this, \'divLivePreview\');" />';
else
lvPreviewFoot.innerHTML += '<input id="shidPrev" type="checkbox" onclick="showHideObj(this, \'divLivePreview\');" />';
showHideObj(this, 'divLivePreview');
lvPreviewFoot.innerHTML += '<label for="shidPrev">' + lang_menu[0].PREVIEW + '</label>';
//Liste (default = not checked)
if (typeof(checkListe)!="undefined" && checkListe == "1")
lvPreviewFoot.innerHTML += '<input id="shidList" type="checkbox" checked onclick="showHideObj(this, \'liveFollow\');" />';
else
lvPreviewFoot.innerHTML += '<input id="shidList" type="checkbox" onclick="showHideObj(this, \'liveFollow\');" />';
showHideObj(this, 'liveFollow');
lvPreviewFoot.innerHTML += '<label for="shidList">' + lang_menu[0].LISTS + '</label>';
//Modifiche minori (default = not checked)
if (typeof(checkModificheMinori)!="undefined" && checkModificheMinori == "1")
lvPreviewFoot.innerHTML += '<input id="showDiffR" type="checkbox" checked />';
else
Riga 1 600 ⟶ 1 602:
//Pannello (default = checked)
if (typeof(checkPannello)!="undefined" && checkPannello == "0")
lvPreviewFoot.innerHTML += '<input id="shidRC" type="checkbox" onclick="showHideObj(this, \'divTabRC\');" />';
else
lvPreviewFoot.innerHTML += '<input id="shidRC" type="checkbox" checked onclick="showHideObj(this, \'divTabRC\');" />';
showHideObj(this, 'divTabRC');
lvPreviewFoot.innerHTML += '<label for="shidRC">' + lang_menu[0].RCLABEL + '</label>';
//Show Bot (default = checked)
if (typeof(checkNienteBot)!="undefined" && checkNienteBot == "0")
lvPreviewFoot.innerHTML += '<input id="showBot" type="checkbox" />';
else
Riga 1 614 ⟶ 1 617:
//Solo IP (default = not checked)
if (typeof(checkSoloIP)!="undefined" && checkSoloIP == "1")
lvPreviewFoot.innerHTML += '<input id="showIP" type="checkbox" checked />';
else
Riga 1 621 ⟶ 1 624:
//RC (default = checked)
if (typeof(checkRC)!="undefined" && checkRC == "0")
lvPreviewFoot.innerHTML += '<input id="showRC" type="checkbox" />';
else
Riga 1 628 ⟶ 1 631:
//Log (default = checked)
if (typeof(checkLog)!="undefined" && checkLog == "0")
lvPreviewFoot.innerHTML += '<input id="showLog" type="checkbox" />';
else
|