Jump to content

MediaWiki:MoveEdittools.js: Difference between revisions

From TwainFrame
Created page with "* * @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'))) { var eForm = document.getElementById('editform'); if (!eForm) return; var eTools = eForm.getElementsByClassName('mw-editTools')[0]; // DIV var eOptions = eForm.getElementsByClassName('edi..."
 
No edit summary
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
/**
/** Move Edittools above the edit field **/
* @description: Move Edittools direct below the edit field.
 
* @author: [[User:Perhelion]] ([[mw:MediaWiki_talk:Edittools#Move_Edittools_just_below_the_edit_window_or_summary]])
mw.hook( 'wikipage.content' ).add( ( $content ) => {
* 13:04, 21 May 2018 (UTC)
const $editForm = $content.find( '#editform' );
**/
if ( $editForm.length ) {
$(function () {
console.log("loading");
if (/^(edit|submit)$/.test(mw.config.get('wgAction'))) {
const $editTools = $content.find( '.mw-editTools' )[0]; // DIV
var eForm = document.getElementById('editform');
    const $editorUi = $content.find('.wikiEditor-ui')[0]; // DIV
if (!eForm) return;
    $editForm.prepend($editTools);
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);
}
});
});

Latest revision as of 17:19, 25 June 2025

/** Move Edittools above the edit field **/

mw.hook( 'wikipage.content' ).add( ( $content ) => {
	const $editForm = $content.find( '#editform' );
	if ( $editForm.length ) {
		console.log("loading");
		const $editTools = $content.find( '.mw-editTools' )[0]; // DIV
	    const $editorUi = $content.find('.wikiEditor-ui')[0]; // DIV
	    $editForm.prepend($editTools);
	}
});