「MediaWiki:Vector.js」の版間の差分
提供: ひつじ小屋別館2代目
細 (1版) |
細 (1版 をインポートしました) |
||
(他の1人の利用者による、間の1版が非表示) | |||
9行目: | 9行目: | ||
window.forcePreview = function() | window.forcePreview = function() | ||
{ | { | ||
+ | var wgUserName = mw.config.get('wgUserName'); | ||
+ | |||
if (wgUserName != null) return; | if (wgUserName != null) return; | ||
var saveButton = document.getElementById("wpSave"); | var saveButton = document.getElementById("wpSave"); |
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>*/