MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
(Test moving the visual editor page properties menu) |
(I was running the code too early) |
||
Line 10: | Line 10: | ||
} | } | ||
$(function () { | |||
improveVisualEditor(); | improveVisualEditor(); | ||
}()); |
Revision as of 03:50, 20 June 2022
/* Any JavaScript here will be loaded for all users on every page load. */
// Improve Visual Editor
function improveVisualEditor() {
// Move the page properties near to the text edition option to make them easier to find
var editor_toolbar_tools = $(".ve-init-target-visual .oo-ui-toolbar-bar .oo-ui-toolbar-tools");
if (editor_toolbar_tools != null) {
$(".ve-init-target-visual .oo-ui-toolbar-bar .oo-ui-toolbar-tools").last().append($("[title='Page options']"));
}
}
$(function () {
improveVisualEditor();
}());