From gm_construct 13 beta
|
|
| Line 1: |
Line 1: |
| /* Any JavaScript here will be loaded for all users on every page load. */ | | /* 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();
| |
| }());
| |
Latest revision as of 04:19, 20 June 2022
/* Any JavaScript here will be loaded for all users on every page load. */