사용자:Ellif/common.js: 두 판 사이의 차이
잔글편집 요약 없음 |
편집 요약 없음 |
||
122번째 줄: | 122번째 줄: | ||
} | } | ||
}, | }, | ||
"틀: | "틀:s": { | ||
"action": { | "action": { | ||
"type": "encapsulate", | "type": "encapsulate", | ||
"options": { | "options": { | ||
"pre": "{{ | "pre": "{{s|", | ||
"post": "}}" | "post": "}}" | ||
} | } |
2021년 3월 6일 (토) 19:59 기준 최신판
var customizeToolbar = function () {
/* Your code goes here */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'characters',
'pages': {
'emoticons': {
'layout': 'characters',
'label': 'Emoticons',
'characters':
"‘’": {
"action": {
"type": "encapsulate",
"options": {
"pre": "‘",
"post": "’"
}
}
},
"“”": {
"action": {
"type": "encapsulate",
"options": {
"pre": "“",
"post": "”"
}
}
},
"’": "’",
"·": "·",
"〈〉": {
"action": {
"type": "encapsulate",
"options": {
"pre": "〈",
"post": "〉"
}
}
},
"「」": {
"action": {
"type": "encapsulate",
"options": {
"pre": "「",
"post": "」"
}
}
},
"『』": {
"action": {
"type": "encapsulate",
"options": {
"pre": "『",
"post": "』"
}
}
},
"《》": {
"action": {
"type": "encapsulate",
"options": {
"pre": "《",
"post": "》"
}
}
},
"—": {
"titleMsg": "special-characters-title-emdash",
"action": {
"type": "replace",
"options": {
"peri": "—",
"selectPeri": false
}
}
},
"⸺": {
"titleMsg": "special-characters-title-two-emdash",
"action": {
"type": "replace",
"options": {
"peri": "⸺",
"selectPeri": false
}
}
},
"△": "△",
"▲": "▲",
"□": "□",
"■": "■",
"¹": "¹",
"²": "²",
"³": "³",
"←": "←",
"→": "→",
"↑": "↑",
"↓": "↓",
"↘": "↘",
"↗": "↗",
"⇐": "⇐",
"⇒": "⇒",
"⇘": "⇘",
"⇗": "⇗",
"☆": "☆",
"★": "★",
"㈜": "㈜",
"틀:del": {
"action": {
"type": "encapsulate",
"options": {
"pre": "{{del|",
"post": "}}"
}
}
},
"\u003Cdel\u003E": {
"action": {
"type": "encapsulate",
"options": {
"pre": "\u003Cdel\u003E",
"post": "\u003C/del\u003E"
}
}
},
"틀:s": {
"action": {
"type": "encapsulate",
"options": {
"pre": "{{s|",
"post": "}}"
}
}
}
};
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
mw.loader.using( 'user.options' ).then( function () {
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
$.when(
mw.loader.using( 'ext.wikiEditor' ), $.ready
).then( customizeToolbar );
}
} );
}