Abrir menu principal

UESPWiki β

UESPWiki:Javascript/forcepreview.js

< UESPWiki:Javascript

//

//


/* Force preview */
/* by Marc Mongenet, 2006, fr.wikipedia. Modified to work for non-anons by Soxred93 */
/* [[User:Soxred93/forcepreview.js]] */
function forcePreview() {
  if (wgAction == "edit")
{
  document.getElementById("wpSave").disabled=true;
  document.getElementById("wpSave").value = "Save (preview first)";
  document.getElementById("wpSave").style.fontWeight = "normal";
  document.getElementById("wpPreview").style.fontWeight = "bold";
}
}
 
addOnloadHook(forcePreview);

//