MediaWiki:MoveEdittools.js
Appearance
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/** 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); } });