MediaWiki:MoveEdittools.js

Revision as of 16:17, 25 June 2025 by KB (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/**
* @description: Move Edittools above the edit field.
* based on script by:
* [[User:Perhelion]] ([[mw:MediaWiki_talk:Edittools#Move_Edittools_just_below_the_edit_window_or_summary]])
* 13:04, 21 May 2018 (UTC)
**/
mw.hook( 'wikipage.content' ).add( ( $content ) => {
	const $editForm = $content.find( '#editform' );
	if ( $editForm.length ) {
		console.log("loading");
		const $editTools = $content.find( '.mw-editTools' ); // DIV
	    const $editorUi = $content.find('.wikiEditor-ui'); // DIV
	    $editForm.insertBefore($editTools, $editorUi);
	}
		// Do things with $target
		
});

/**$(function () {
if (/^(edit|submit)$/.test(mw.config.get('wgAction'))) {
	console.log("loading");
	var editForm = document.getElementById('editform');
	if (!editForm) return;
	var editTools = editForm.getElementsByClassName('mw-editTools'); // DIV
	var editorUi = eForm.getElementsByClassName('wikiEditor-ui'); // DIV
	if (!editTools || !editorUi) return mw.log(editTools, editForm, editorUi);
	editForm.insertBefore(editTools, editorUi);
}
});
**/