提供: defeatedcrow mod wiki
Defeatedcrow (トーク | 投稿記録) |
Defeatedcrow (トーク | 投稿記録) |
||
29行目: | 29行目: | ||
label: 'source code', | label: 'source code', | ||
type: 'button', | type: 'button', | ||
− | icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/ | + | icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/code-java.png', |
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: '<source lang="java">', | pre: '<source lang="java">', | ||
− | peri: 'Insert | + | peri: 'Insert code here', |
post: '</source>' | post: '</source>' | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } ); | ||
+ | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | ||
+ | section: 'advanced', | ||
+ | group: 'format', | ||
+ | tools: { | ||
+ | buttonId: { | ||
+ | label: 'html', | ||
+ | type: 'button', | ||
+ | icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/code-html.png', | ||
+ | action: { | ||
+ | type: 'encapsulate', | ||
+ | options: { | ||
+ | pre: '<html>', | ||
+ | peri: 'Insert html here', | ||
+ | post: '</html>' | ||
} | } | ||
} | } | ||
74行目: | 93行目: | ||
peri: 'Insert text', | peri: 'Insert text', | ||
post: '</pre>' | post: '</pre>' | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } ); | ||
+ | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | ||
+ | section: 'advanced', | ||
+ | group: 'format', | ||
+ | tools: { | ||
+ | buttonId: { | ||
+ | label: 'source code', | ||
+ | type: 'del', | ||
+ | icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/delete.png', | ||
+ | action: { | ||
+ | type: 'encapsulate', | ||
+ | options: { | ||
+ | pre: '<s>', | ||
+ | peri: 'Insert here', | ||
+ | post: '</s>' | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } ); | ||
+ | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | ||
+ | section: 'advanced', | ||
+ | group: 'format', | ||
+ | tools: { | ||
+ | buttonId: { | ||
+ | label: 'notoc', | ||
+ | type: 'button', | ||
+ | icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/notoc.png', | ||
+ | action: { | ||
+ | type: 'encapsulate', | ||
+ | options: { | ||
+ | pre: '__NOTOC__', | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } ); | ||
+ | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | ||
+ | section: 'advanced', | ||
+ | group: 'format', | ||
+ | tools: { | ||
+ | buttonId: { | ||
+ | label: 'adv link', | ||
+ | type: 'button', | ||
+ | icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/code-html.png', | ||
+ | action: { | ||
+ | type: 'encapsulate', | ||
+ | options: { | ||
+ | pre: '<html><a href="', | ||
+ | peri: 'Insert url', | ||
+ | post: '" onclick="ga('send', 'event', 'Outbound', 'Click', 'label');">Title</a></html>' | ||
} | } | ||
} | } |
2016年3月12日 (土) 07:21時点における版
jQuery( document ).ready( function ( $ ) { $( 'div#edittoolbar' ).wikiEditor(); var customizeToolbar = function() { $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { buttonId: { label: 'Comment', type: 'button', icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/format-italic-C.png', action: { type: 'encapsulate', options: { pre: '<!-- ', peri: 'Insert comment here', post: ' -->' } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { buttonId: { label: 'source code', type: 'button', icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/code-java.png', action: { type: 'encapsulate', options: { pre: '<source lang="java">', peri: 'Insert code here', post: '</source>' } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { buttonId: { label: 'html', type: 'button', icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/code-html.png', action: { type: 'encapsulate', options: { pre: '<html>', peri: 'Insert html here', post: '</html>' } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { buttonId: { label: 'red', type: 'button', icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/color-red.png', action: { type: 'encapsulate', options: { pre: '<pre style="color: red">', peri: 'Insert text', post: '</pre>' } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { buttonId: { label: 'blue', type: 'button', icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/color-blue.png', action: { type: 'encapsulate', options: { pre: '<pre style="color: blue">', peri: 'Insert text', post: '</pre>' } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { buttonId: { label: 'source code', type: 'del', icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/delete.png', action: { type: 'encapsulate', options: { pre: '<s>', peri: 'Insert here', post: '</s>' } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { buttonId: { label: 'notoc', type: 'button', icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/notoc.png', action: { type: 'encapsulate', options: { pre: '__NOTOC__', } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { buttonId: { label: 'adv link', type: 'button', icon: '//defeatedcrow.jp/modwiki/extensions/WikiEditor/modules/images/toolbar/code-html.png', action: { type: 'encapsulate', options: { pre: '<html><a href="', peri: 'Insert url', post: '" onclick="ga('send', 'event', 'Outbound', 'Click', 'label');">Title</a></html>' } } } } } ); }; /* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */ if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) { mw.loader.using( 'user.options', 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.toolbar' ), $.ready ).then( customizeToolbar ); } } ); } // Add the customizations to LiquidThreads' edit toolbar, if available mw.hook( 'ext.lqt.textareaCreated' ).add( customizeToolbar ); } );