「MediaWiki:Common.js」:各本之異

(新文「→‎此之JavaScript將載於全簿之頁。 mw.loader.using(['mediawiki.util'], function() { document.querySelector('input#searchInput').addEventListener('input', function() { $(this).trigger('keypress'); }); }); var sectionCJK = { type: 'booklet', label: 'CJK', pages: { 'Punct': { layout: 'characters', label: '、。〃', characters: [' ', '、', '。', '〃', '〄', '々', '〆', '〇', '〈', '〉', '《', '》', '「', '……」
 
十八子
無編輯摘要
第九行: 第九行:
var sectionCJK = {
var sectionCJK = {
   type: 'booklet',
   type: 'booklet',
   label: 'CJK',
   label: ' ',
   pages: {
   pages: {
    'Punct': {
    'Punct': {
第三二行: 第三二行:
   $textarea.wikiEditor('addToToolbar', {
   $textarea.wikiEditor('addToToolbar', {
    'sections': {
    'sections': {
     ' ': sectionCJK
     'CJK': sectionCJK
    }
    }
   });
   });
});
});

二〇二三年一一月三日 (五) 二三時三九分審

/* 此之JavaScript將載於全簿之頁。 */

mw.loader.using(['mediawiki.util'], function() {
    document.querySelector('input#searchInput').addEventListener('input', function() {
        $(this).trigger('keypress');
    });
});

var sectionCJK = {
  type: 'booklet',
  label: '漢',
  pages: {
    'Punct': {
      layout: 'characters',
      label: '、。〃',
      characters: [' ', '、', '。', '〃', '〄', '々', '〆', '〇', '〈', '〉', '《', '》', '「', '」', '『', '』', '【', '】', '〒', '〓', '〔', '〕', '〖', '〗', '〘', '〙', '〚', '〛', '〜', '〝', '〞', '〟', '〠', '〡', '〢', '〣', '〤', '〥', '〦', '〧', '〨', '〩', '〪', '〫', '〬', '〭', '〮', '〯', '〰', '〱', '〲', '〳', '〴', '〵', '〶', '〷', '〸', '〹', '〺', '〻', '〼', '〽']
    },
    'IDC': {
      layout: 'characters',
      label: '⿰⿱⿻',
      characters: ['⿰', '⿱', '⿲', '⿳', '⿴', '⿵', '⿶', '⿷', '⿸', '⿹', '⿺', '⿻']
    },
    'Kanbun': {
      layout: 'characters',
      label: '㆑㆒㆓',
      characters: ['㆐', '㆑', '㆒', '㆓', '㆔', '㆕', '㆖', '㆗', '㆘', '㆙', '㆚', '㆛', '㆜', '㆝', '㆞', '㆟']
    }
  }
}

mw.hook('wikiEditor.toolbarReady').add(function($textarea) {
  $textarea.wikiEditor('addToToolbar', {
    'sections': {
      'CJK': sectionCJK
    }
  });
});