MediaWiki:MoveEdittools.js: Difference between revisions

No edit summary
No edit summary
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
/**
/** Move Edittools above the edit field **/
* @description: Move Edittools above the edit field.
 
* based on script by:
mw.hook( 'wikipage.content' ).add( ( $content ) => {
* [[User:Perhelion]] ([[mw:MediaWiki_talk:Edittools#Move_Edittools_just_below_the_edit_window_or_summary]])
const $editForm = $content.find( '#editform' );
* 13:04, 21 May 2018 (UTC)
if ( $editForm.length ) {
**/
console.log("loading");
$(function () {
const $editTools = $content.find( '.mw-editTools' )[0]; // DIV
if (/^(edit|submit)$/.test(mw.config.get('wgAction'))) {
    const $editorUi = $content.find('.wikiEditor-ui')[0]; // DIV
console.log("loading");
    $editForm.prepend($editTools);
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);
}
});
});