MediaWiki:Common.js

From David's Wiki
\( \newcommand{\P}[]{\unicode{xB6}} \newcommand{\AA}[]{\unicode{x212B}} \newcommand{\empty}[]{\emptyset} \newcommand{\O}[]{\emptyset} \newcommand{\Alpha}[]{Α} \newcommand{\Beta}[]{Β} \newcommand{\Epsilon}[]{Ε} \newcommand{\Iota}[]{Ι} \newcommand{\Kappa}[]{Κ} \newcommand{\Rho}[]{Ρ} \newcommand{\Tau}[]{Τ} \newcommand{\Zeta}[]{Ζ} \newcommand{\Mu}[]{\unicode{x039C}} \newcommand{\Chi}[]{Χ} \newcommand{\Eta}[]{\unicode{x0397}} \newcommand{\Nu}[]{\unicode{x039D}} \newcommand{\Omicron}[]{\unicode{x039F}} \DeclareMathOperator{\sgn}{sgn} \def\oiint{\mathop{\vcenter{\mathchoice{\huge\unicode{x222F}\,}{\unicode{x222F}}{\unicode{x222F}}{\unicode{x222F}}}\,}\nolimits} \def\oiiint{\mathop{\vcenter{\mathchoice{\huge\unicode{x2230}\,}{\unicode{x2230}}{\unicode{x2230}}{\unicode{x2230}}}\,}\nolimits} \)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */

if (mw.config.get("wgAction") == "edit") {
  mw.loader.load( 'https://codemirror.net/3/addon/comment/comment.js' );
  const customKeyMap = {
    "Ctrl-/": "toggleComment"
  };
  const codeMirrorCoreModules = [
			'ext.CodeMirror.lib',
			'ext.CodeMirror.mode.mediawiki'
		];
  mw.loader.using( codeMirrorCoreModules, function () {
    CodeMirror.keyMap.pcDefault[ 'Ctrl-/' ] = "toggleComment";
    CodeMirror.extendMode("mediawiki", {
      blockCommentStart: '<!--',
      blockCommentEnd: '-->',
      start: [
        {
          regex: /<!--.*-->/,
          token: 'comment',
        },
      ]
    });
    window.cmEditor = document.getElementsByClassName("CodeMirror")[0].CodeMirror;
  });
}