We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f865ce5 commit b3c5de4Copy full SHA for b3c5de4
Links.js
@@ -29,10 +29,9 @@
29
- modern
30
- monobook
31
- timeless
32
+ - minerva (TODO: make less ugly)
33
- right menu (tools menu)
34
- vector-2022
- - not displayed at all
35
- - minerva
36
*/
37
38
class Links {
@@ -52,7 +51,11 @@ class Links {
52
51
}
53
54
createBottomLeftMenuContainer() {
55
- this.mw.util.addPortlet( 'p-links', 'More tools', '#p-tb' );
+ if ( this.mw.config.get( 'skin' ) === 'minerva' ) {
+ this.mw.util.addPortlet( 'p-links', 'More tools', '#p-navigation' );
56
+ } else {
57
+ this.mw.util.addPortlet( 'p-links', 'More tools', '#p-tb' );
58
+ }
59
60
61
async generateUserspaceLinks() {
0 commit comments