手册:$wgLegacyJavaScriptGlobals
此功能已在版本1.37.0中完全移除。 |
ResourceLoader: $wgLegacyJavaScriptGlobals | |
---|---|
Whether or not to assign configuration variables to the global window object. |
|
引进版本: | 1.18.0 (r87856) |
弃用版本: | 1.35.0 (Gerrit change 618030; git #0b23e103) |
移除版本: | 1.37.0 (Gerrit change 678716; git #99d4ad59) |
允许的值: | (布尔值) |
默认值: | false (1.35-1.36)true (1.18-1.34) |
其他设置: 按首字母排序 | 按功能排序 |
详情
Whether or not to assign configuration variables to the global window object.
If this is set to false, old code using deprecated variables like:
if ( window.wgRestrictionEdit ) ...
或:
if ( wgIsArticle ) ...
will no longer work and needs to use mw.config instead. For example:
if ( mw.config.exists('wgRestrictionEdit') )
或:
if ( mw.config.get('wgIsArticle') )