MediaWiki:Common.js

本版日期︰二〇二三年一一月三日 (五) 二三時三八分;作者︰十八子
(辨) ←舊|今審 ()|新→ ()

註:重取頁面,文方新焉。

  • Firefox / Safari:Shift 並點 重新載入,或合鍵 Ctrl-F5Ctrl-R(Mac 為 ⌘-R)。
  • Google Chrome:Ctrl-Shift-R(Mac為 ⌘-Shift-R)。
  • Internet Explorer:Ctrl 並點 重新整理,或合鍵 Ctrl-F5
  • Opera:須至 Tools → Preferences 清謄本(Mac 為 Opera → Preferences)。
/* 此之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: [' ', '、', '。', '〃', '〄', '々', '〆', '〇', '〈', '〉', '《', '》', '「', '」', '『', '』', '【', '】', '〒', '〓', '〔', '〕', '〖', '〗', '〘', '〙', '〚', '〛', '〜', '〝', '〞', '〟', '〠', '〡', '〢', '〣', '〤', '〥', '〦', '〧', '〨', '〩', '〪', '〫', '〬', '〭', '〮', '〯', '〰', '〱', '〲', '〳', '〴', '〵', '〶', '〷', '〸', '〹', '〺', '〻', '〼', '〽']
    },
    'IDC': {
      layout: 'characters',
      label: '⿰⿱⿻',
      characters: ['⿰', '⿱', '⿲', '⿳', '⿴', '⿵', '⿶', '⿷', '⿸', '⿹', '⿺', '⿻']
    },
    'Kanbun': {
      layout: 'characters',
      label: '㆑㆒㆓',
      characters: ['㆐', '㆑', '㆒', '㆓', '㆔', '㆕', '㆖', '㆗', '㆘', '㆙', '㆚', '㆛', '㆜', '㆝', '㆞', '㆟']
    }
  }
}

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