<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://compusofia.com/w/index.php?action=history&amp;feed=atom&amp;title=MediaWiki%3AGadget-oldeditor.js</id>
	<title>MediaWiki:Gadget-oldeditor.js - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://compusofia.com/w/index.php?action=history&amp;feed=atom&amp;title=MediaWiki%3AGadget-oldeditor.js"/>
	<link rel="alternate" type="text/html" href="https://compusofia.com/w/index.php?title=MediaWiki:Gadget-oldeditor.js&amp;action=history"/>
	<updated>2026-04-26T11:39:50Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://compusofia.com/w/index.php?title=MediaWiki:Gadget-oldeditor.js&amp;diff=1979&amp;oldid=prev</id>
		<title>Majestix: 1 revision imported: Initial Setup</title>
		<link rel="alternate" type="text/html" href="https://compusofia.com/w/index.php?title=MediaWiki:Gadget-oldeditor.js&amp;diff=1979&amp;oldid=prev"/>
		<updated>2026-04-09T11:56:07Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported: Initial Setup&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 13:56, 9 April 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key wikiNonStop:diff:1.41:old-1978:rev-1979 --&gt;
&lt;/table&gt;</summary>
		<author><name>Majestix</name></author>
	</entry>
	<entry>
		<id>https://compusofia.com/w/index.php?title=MediaWiki:Gadget-oldeditor.js&amp;diff=1978&amp;oldid=prev</id>
		<title>en&gt;Glaisher at 12:18, 25 October 2015</title>
		<link rel="alternate" type="text/html" href="https://compusofia.com/w/index.php?title=MediaWiki:Gadget-oldeditor.js&amp;diff=1978&amp;oldid=prev"/>
		<updated>2015-10-25T12:18:05Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;// This script fully hides the VisualEditor tool, leaving it&amp;#039;s functionality inaccessible.&lt;br /&gt;
// It does not entirely undo the changes, but does restore old look and user-facing behavior.&lt;br /&gt;
&lt;br /&gt;
// It&amp;#039;s bound to break on the slightest changes to VE itself, and might not cooperate&lt;br /&gt;
// with other scripts which poke around the article tabs or section edit links.&lt;br /&gt;
&lt;br /&gt;
// Use at your own risk, and pester the VE team to restore the option to disable VisualEditor&lt;br /&gt;
// if you believe it is necessary.&lt;br /&gt;
&lt;br /&gt;
/*global $, mw */&lt;br /&gt;
$(document).ready(function (){&lt;br /&gt;
	var state = mw.loader.getState(&amp;#039;ext.visualEditor.desktopArticleTarget.init&amp;#039;);&lt;br /&gt;
	if (state != &amp;#039;registered&amp;#039;) { // &amp;#039;registered&amp;#039; actually means &amp;#039;not loading&amp;#039;&lt;br /&gt;
		mw.loader.using(&amp;#039;ext.visualEditor.desktopArticleTarget.init&amp;#039;, function () {&lt;br /&gt;
			// Kill the tab&lt;br /&gt;
			if( $(&amp;#039;#ca-editsource&amp;#039;).length &amp;gt; 0 ) {&lt;br /&gt;
				var caEdit = $(&amp;#039;#ca-edit a&amp;#039;);&lt;br /&gt;
				$(&amp;#039;#ca-editsource a&amp;#039;)&lt;br /&gt;
					.text(caEdit.text());&lt;br /&gt;
				$(&amp;#039;#ca-edit&amp;#039;).remove();&lt;br /&gt;
				$(&amp;#039;#ca-editsource&amp;#039;).attr(&amp;#039;id&amp;#039;, &amp;#039;ca-edit&amp;#039;);&lt;br /&gt;
&lt;br /&gt;
				// Kill the section edit links&lt;br /&gt;
				$(&amp;#039;.mw-editsection-link-secondary&amp;#039;)&lt;br /&gt;
					.text( $(&amp;#039;.mw-editsection-link-primary&amp;#039;).eq(0).text() )&lt;br /&gt;
					.off(&amp;#039;focus blur&amp;#039;);&lt;br /&gt;
				$(&amp;#039;.mw-editsection-divider, .mw-editsection-link-primary&amp;#039;).remove();&lt;br /&gt;
				$(&amp;#039;.mw-editsection-bracket:not(:first-of-type):not(:last-of-type)&amp;#039;).remove();&lt;br /&gt;
				$(&amp;#039;.mw-editsection-bracket, .mw-editsection-link-secondary&amp;#039;).css(&amp;#039;visibility&amp;#039;, &amp;#039;&amp;#039;);&lt;br /&gt;
				$(&amp;#039;h1, h2, h3, h4, h5, h6&amp;#039;).off(&amp;#039;mouseenter mouseleave&amp;#039;);&lt;br /&gt;
			}&lt;br /&gt;
		});&lt;br /&gt;
	}&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>en&gt;Glaisher</name></author>
	</entry>
</feed>