MediaWiki:MoveEdittools.js: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/** | /** | ||
* @description: Move Edittools | * @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) | * 13:04, 21 May 2018 (UTC) | ||
**/ | **/ | ||
Revision as of 14:30, 25 June 2025
/**
* @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)
**/
$(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('wikiEditor-ui')[0]; // DIV
if (!eTools || !eOptions) return mw.log(eTools, eForm, eOptions);
eForm.insertBefore(eTools, eOptions);
}
});