Misplaced Pages

MediaWiki:Gadget-oldeditor.js

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.

This is an old revision of this page, as edited by Krinkle (talk | contribs) at 00:58, 4 July 2013 (Clean up). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Revision as of 00:58, 4 July 2013 by Krinkle (talk | contribs) (Clean up)(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff) Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Misplaced Pages:Bypass your cache.
// 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.viewPageTarget.init');
	if (state != 'registered') { // 'registered' actually means 'not loading'
		mw.loader.using('ext.visualEditor.viewPageTarget.init', function () {
			// Kill the tab
			var caEdit = $('#ca-edit a');
			$('#ca-editsource a')
				.text(caEdit.text())
				.attr('title', caEdit.attr('title'));
			$('#ca-edit').remove();
			$('#ca-editsource').attr('id', 'ca-edit');

			// Kill the section edit links
			$('.mw-editsection-link-secondary')
				.text( $('.mw-editsection-link-primary').eq(0).text() )
				.off('focus blur');
			$('.mw-editsection-divider, .mw-editsection-link-primary').remove();
			$('.mw-editsection-bracket:not(:first-of-type):not(:last-of-type)').remove();
			$('.mw-editsection-bracket, .mw-editsection-link-secondary').css('visibility', '');
			$('h1, h2, h3, h4, h5, h6').off('mouseenter mouseleave');
		});
	}
});