「MediaWiki:Vector.js」の版間の差分
提供: ひつじ小屋別館2代目
(wgから始まるグローバル変数) |
細 (1版 をインポートしました) |
(相違点なし)
|
2015年5月25日 (月) 01:08時点における最新版
/*<source lang="javascript">*/
/* ここに記述したJavaScriptはベクター・スキンの利用者に影響します */
typeof mw != 'undefined' && (function() {
/* mw に依存する部分の始まり */
// Force IP to preview before saving changes.
// Copyright Marc Mongenet, 2006
window.forcePreview = function()
{
var wgUserName = mw.config.get('wgUserName');
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);
/* mw に依存する部分の終わり */
}());
/*</source>*/