Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4109025
ve.ui.CodeMirror.init.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
ve.ui.CodeMirror.init.js
View Options
require
(
'../ext.CodeMirror.data.js'
);
/**
* @module ext.CodeMirror.visualEditor.init
* @description
* Main entry point for CodeMirror initialization in VisualEditor.
*
* The init module is loaded by Hooks.php and is not intended for external use.
* Use {@link module:ext.CodeMirror.v6.visualEditor ext.CodeMirror.v6.visualEditor} instead.
*
* @see module:ext.CodeMirror.v6.visualEditor
* @internal
*/
// This is hacky: mw.hook ensures that new handlers would be fired immediately if they are
// added after the event. We are using this feature to load the actual module via a callback
// when this module is loaded by VE.
//
// TODO: Change the PluginModules in extension.json when fully migrated to v6 and drop this.
mw
.
hook
(
've.loadModules'
).
add
(
(
addPlugin
)
=>
{
const
urlParams
=
new
URLSearchParams
(
window
.
location
.
search
);
const
shouldUseV6
=
mw
.
config
.
get
(
'extCodeMirrorConfig'
).
useV6
||
urlParams
.
get
(
'cm6enable'
)
||
mw
.
user
.
options
.
get
(
'codemirror-beta-feature-enable'
)
===
'1'
;
// VE would wait for plugin callbacks to resolve before initialisation.
if
(
shouldUseV6
)
{
addPlugin
(
()
=>
mw
.
loader
.
using
(
'ext.CodeMirror.v6.visualEditor'
)
);
}
else
{
addPlugin
(
()
=>
mw
.
loader
.
using
(
'ext.CodeMirror.visualEditor'
)
);
}
}
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Aug 18, 20:51 (2 w, 20 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
85/a3/2cd5e1b11f4397fd97ac8babe34a
Default Alt Text
ve.ui.CodeMirror.init.js (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment