「MediaWiki:Vector.js」の版間の差分
提供: ひつじ小屋別館2代目
(addOnloadHook の置き換え) |
細 (1版) |
(相違点なし)
|
2013年11月18日 (月) 00:59時点における版
/*<source lang="javascript">*/
/* ここに記述したJavaScriptはベクター・スキンの利用者に影響します */
// Force IP to preview before saving changes.
// Copyright Marc Mongenet, 2006
function forcePreview()
{
if (wgUserName != null) return;
var saveButton = document.getElementById("wpSave");
if (!saveButton) return;
if (location.search.search(/&action=edit/) == -1) return;
saveButton.disabled = true;
saveButton.style.fontWeight = "normal";
document.getElementById("wpPreview").style.fontWeight = "bold";
}
$(forcePreview);
/*</source>*/