コンテンツにスキップ

英文维基 | 中文维基 | 日文维基 | 草榴社区

利用者:Mizusumashi/Script/ForcePreview.js

お知らせ: 保存した後、ブラウザのキャッシュをクリアしてページを再読み込みする必要があります。

多くの WindowsLinux のブラウザ

  • Ctrl を押しながら F5 を押す。

Mac における Safari

  • Shift を押しながら、更新ボタン をクリックする。

Mac における ChromeFirefox

  • Cmd Shift を押しながら R を押す。

詳細についてはWikipedia:キャッシュを消すをご覧ください。

function forcePreviewEx()
{
    var saveButton = document.getElementById('wpSave');
    var previewButton = document.getElementById("wpPreview");
    
    if (! saveButton || ! previewButton){
        return;
    }
    
    saveButton.disabled = true;
    saveButton.style.fontWeight = "normal";
    previewButton.style.fontWeight = "bold";
}


if( wgAction == 'edit' ){
    addOnloadHook(forcePreviewEx);
}