提供: defeatedcrow mod wiki
Defeatedcrow (トーク | 投稿記録) |
Defeatedcrow (トーク | 投稿記録) |
||
1行目: | 1行目: | ||
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */ | /* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */ | ||
− | + | // Check that the toolbar is available | |
− | + | if ( typeof $j !== 'undefined' && typeof $j.fn.wikiEditor !== 'undefined' ) { | |
− | + | // Execute on load | |
− | ' | + | $j( function() { |
− | + | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | |
− | + | section: 'advanced', | |
− | + | group: 'format', | |
− | + | tools: { | |
− | + | "math": { | |
− | + | label: 'Java', | |
− | + | type: 'button', | |
− | + | icon: '//modwiki/extensions/WikiEditor/modules/images/toolbar/added-code.png', | |
− | + | action: { | |
− | + | type: 'encapsulate', | |
− | + | options: { | |
− | + | pre: "<source lang="java">", | |
− | + | post: "</source>" | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
} | } | ||
− | + | } | |
} | } | ||
} | } | ||
} ); | } ); | ||
− | } | + | } |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
} | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
2016年3月7日 (月) 15:31時点における版
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */ // Check that the toolbar is available if ( typeof $j !== 'undefined' && typeof $j.fn.wikiEditor !== 'undefined' ) { // Execute on load $j( function() { $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { "math": { label: 'Java', type: 'button', icon: '//modwiki/extensions/WikiEditor/modules/images/toolbar/added-code.png', action: { type: 'encapsulate', options: { pre: "<source lang="java">", post: "</source>" } } } } } ); } }