MediaWiki:MoveEdittools.js: Difference between revisions
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
* 13:04, 21 May 2018 (UTC) | * 13:04, 21 May 2018 (UTC) | ||
**/ | **/ | ||
$(function () { | mw.hook( 'wikipage.content' ).add( ( $content ) => { | ||
if (/^(edit|submit)$/.test(mw.config.get('wgAction'))) { | |||
console.log("loading"); | |||
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); | |||
} | |||
}); | |||
/**$(function () { | |||
if (/^(edit|submit)$/.test(mw.config.get('wgAction'))) { | if (/^(edit|submit)$/.test(mw.config.get('wgAction'))) { | ||
console.log("loading"); | console.log("loading"); | ||
Line 16: | Line 28: | ||
} | } | ||
}); | }); | ||
**/ |