mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-23 14:06:52 +00:00
Merge "Allow &veaction=editsource to load 2017WTE regardless of user prefs"
This commit is contained in:
commit
f363c943cc
|
@ -30,12 +30,8 @@
|
|||
const url = new URL( location.href );
|
||||
// Provide the new wikitext editor
|
||||
if (
|
||||
conf.enableWikitext &&
|
||||
(
|
||||
mw.user.options.get( 'visualeditor-newwikitext' ) ||
|
||||
url.searchParams.get( 'veaction' ) === 'editsource'
|
||||
) &&
|
||||
mw.loader.getState( 'ext.visualEditor.mwwikitext' )
|
||||
mw.user.options.get( 'visualeditor-newwikitext' ) ||
|
||||
url.searchParams.get( 'veaction' ) === 'editsource'
|
||||
) {
|
||||
modules.push( 'ext.visualEditor.mwwikitext' );
|
||||
}
|
||||
|
|
|
@ -1351,11 +1351,14 @@
|
|||
init.isWikitextAvailable = (
|
||||
init.isAvailable &&
|
||||
|
||||
// Enabled on site
|
||||
conf.enableWikitext &&
|
||||
// If forced by the URL parameter, skip the checks (T239796)
|
||||
( url.searchParams.get( 'veaction' ) === 'editsource' || (
|
||||
// Enabled on site
|
||||
conf.enableWikitext &&
|
||||
|
||||
// User preference
|
||||
mw.user.options.get( 'visualeditor-newwikitext' ) &&
|
||||
// User preference
|
||||
mw.user.options.get( 'visualeditor-newwikitext' )
|
||||
) ) &&
|
||||
|
||||
// Only on wikitext pages
|
||||
mw.config.get( 'wgPageContentModel' ) === 'wikitext'
|
||||
|
|
Loading…
Reference in a new issue