Jump to content

MediaWiki:MoveEdittools.js

From TwainFrame
Revision as of 14:25, 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 direct below the edit field.
* @author: [[User:Perhelion]] ([[mw:MediaWiki_talk:Edittools#Move_Edittools_just_below_the_edit_window_or_summary]])
* 13:04, 21 May 2018 (UTC)
**/
$(function () {
if (/^(edit|submit)$/.test(mw.config.get('wgAction'))) {
	console.log("loading");
	var eForm = document.getElementById('editform');
	if (!eForm) return;
	var eTools = eForm.getElementsByClassName('mw-editTools')[0]; // DIV
	var eOptions = eForm.getElementsByClassName('editOptions')[0]; // DIV
	if (!eTools || !eOptions) return mw.log(eTools, eForm, eOptions);
	eForm.insertBefore(eTools, eOptions);
}
});