Jump to content

MediaWiki:MoveEdittools.js: Difference between revisions

From TwainFrame
No edit summary
No edit summary
 
Line 9: Line 9:
    $editForm.prepend($editTools);
    $editForm.prepend($editTools);
}
}
// Do things with $target
});
});

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);
	}
});