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

提供: ひつじ小屋別館2代目
移動先: 案内検索
(1版)
(addOnloadHook の置き換え)
14行目: 14行目:
 
}
 
}
 
   
 
   
addOnloadHook(forcePreview);
+
$(forcePreview);
 
   
 
   
 
/*</source>*/
 
/*</source>*/

2013年11月12日 (火) 20: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>*/