MediaWiki:MoveEdittools.js: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/** | /** | ||
* @description: Move Edittools above the edit field. | * @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]]) | * 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) | ||
**/ | **/ | ||
Line 7: | Line 8: | ||
if (/^(edit|submit)$/.test(mw.config.get('wgAction'))) { | if (/^(edit|submit)$/.test(mw.config.get('wgAction'))) { | ||
console.log("loading"); | console.log("loading"); | ||
var | var editForm = document.getElementById('editform'); | ||
if (! | if (!editForm) return; | ||
var | var editTools = editForm.getElementByClassName('mw-editTools'); // DIV | ||
var | var editorUi = eForm.getElementByClassName('wikiEditor-ui'); // DIV | ||
if (! | if (!editTools || !editorUi) return mw.log(editTools, editForm, editorUi); | ||
editForm.insertBefore(editTools, editorUi); | |||
} | } | ||
}); | }); |
Revision as of 15:45, 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 editForm = document.getElementById('editform'); if (!editForm) return; var editTools = editForm.getElementByClassName('mw-editTools'); // DIV var editorUi = eForm.getElementByClassName('wikiEditor-ui'); // DIV if (!editTools || !editorUi) return mw.log(editTools, editForm, editorUi); editForm.insertBefore(editTools, editorUi); } });