mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-23 23:33:54 +00:00
Vector should use opt-in policy for ResourceLoaderSkinModule features
Bug: T252774 Change-Id: I50afd035360ff2eccd5a934a02a218d093f9583d
This commit is contained in:
parent
7449c7fdf6
commit
7f801afa07
17
skin.json
17
skin.json
|
@ -72,7 +72,14 @@
|
|||
"ResourceModules": {
|
||||
"skins.vector.styles.legacy": {
|
||||
"class": "ResourceLoaderSkinModule",
|
||||
"features": [ "normalize", "elements", "content", "interface", "logo", "legacy" ],
|
||||
"features": {
|
||||
"normalize": true,
|
||||
"elements": true,
|
||||
"content": true,
|
||||
"interface": true,
|
||||
"logo": true,
|
||||
"legacy": true
|
||||
},
|
||||
"targets": [
|
||||
"desktop",
|
||||
"mobile"
|
||||
|
@ -81,7 +88,13 @@
|
|||
},
|
||||
"skins.vector.styles": {
|
||||
"class": "ResourceLoaderSkinModule",
|
||||
"features": [ "normalize", "elements", "content", "interface", "legacy" ],
|
||||
"features": {
|
||||
"normalize": true,
|
||||
"elements": true,
|
||||
"content": true,
|
||||
"interface": true,
|
||||
"legacy": true
|
||||
},
|
||||
"targets": [
|
||||
"desktop",
|
||||
"mobile"
|
||||
|
|
Loading…
Reference in a new issue