「MediaWiki:Vector.js」の版間の差分

提供: ひつじ小屋別館2代目
移動先: 案内検索
(addOnloadHook の置き換え)
(1版 をインポートしました)
 
(2人の利用者による、間の4版が非表示)
1行目: 1行目:
 
/*<source lang="javascript">*/
 
/*<source lang="javascript">*/
 
/* ここに記述したJavaScriptはベクター・スキンの利用者に影響します */
 
/* ここに記述したJavaScriptはベクター・スキンの利用者に影響します */
 +
 +
typeof mw != 'undefined' && (function() {
 +
/* mw に依存する部分の始まり */
 +
 
// Force IP to preview before saving changes.
 
// Force IP to preview before saving changes.
 
// Copyright Marc Mongenet, 2006
 
// Copyright Marc Mongenet, 2006
function forcePreview()
+
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");
12行目: 18行目:
 
         saveButton.style.fontWeight = "normal";
 
         saveButton.style.fontWeight = "normal";
 
         document.getElementById("wpPreview").style.fontWeight = "bold";
 
         document.getElementById("wpPreview").style.fontWeight = "bold";
}
+
};
 
   
 
   
 
$(forcePreview);
 
$(forcePreview);
 +
 +
/* mw に依存する部分の終わり */
 +
}());
 +
 
   
 
   
 
/*</source>*/
 
/*</source>*/

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>*/