MediaWiki:MoveEdittools.js: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/** | /** Move Edittools above the edit field **/ | ||
* | |||
* | |||
mw.hook( 'wikipage.content' ).add( ( $content ) => { | mw.hook( 'wikipage.content' ).add( ( $content ) => { | ||
const $editForm = $content.find( '#editform' ); | const $editForm = $content.find( '#editform' ); | ||
Line 16: | Line 12: | ||
}); | }); | ||
Revision as of 17:18, 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); } // Do things with $target });