利用者:VectorSkin2000/vector.js
表示
お知らせ: 保存した後、ブラウザのキャッシュをクリアしてページを再読み込みする必要があります。
多くの Windows や Linux のブラウザ
- Ctrl を押しながら F5 を押す。
Mac における Safari
Mac における Chrome や Firefox
- ⌘ Cmd と ⇧ Shift を押しながら R を押す。
詳細についてはWikipedia:キャッシュを消すをご覧ください。
// This script fully hides the VisualEditor tool, leaving it's functionality inaccessible.
// It does not entirely undo the changes, but does restore old look and user-facing behavior.
// It's bound to break on the slightest changes to VE itself, and might not cooperate
// with other scripts which poke around the article tabs or section edit links.
// Use at your own risk, and pester the VE team to restore the option to disable VisualEditor
// if you believe it is necessary.
/*global $, mw */
$(document).ready(function (){
var state = mw.loader.getState('ext.visualEditor.desktopArticleTarget.init');
if (state != 'registered') { // 'registered' actually means 'not loading'
mw.loader.using('ext.visualEditor.desktopArticleTarget.init', function () {
// Kill the tab
if( $('#ca-editsource').length > 0 ) {
var caEdit = $('#ca-edit a');
$('#ca-editsource a')
.text(caEdit.text());
$('#ca-edit').remove();
$('#ca-editsource').attr('id', 'ca-edit');
}
});
}
});