提供: Minecraft Modding Wiki
< 利用者:Defeatedcrow
2018年8月19日 (日) 17:08時点におけるDefeatedcrow (トーク | 投稿記録)による版
注意: 保存後、変更を確認するにはブラウザーのキャッシュを消去する必要がある場合があります。
- Firefox / Safari: Shift を押しながら 再読み込み をクリックするか、Ctrl-F5 または Ctrl-R を押してください (Mac では ⌘-R)
- Google Chrome: Ctrl-Shift-R を押してください (Mac では ⌘-Shift-R)
- Internet Explorer: Ctrl を押しながら 最新の情報に更新 をクリックするか、Ctrl-F5 を押してください
- Opera: メニュー → 設定 (Mac では Opera → 環境設定) に移動し、プライバシーとセキュリティ → 閲覧データを消去 → キャッシュされた画像およびファイル からキャッシュをクリアしてください。
// Check that the toolbar is available if ( typeof $ != 'undefined' && typeof $.fn.wikiEditor != 'undefined' ) { // Execute on load $( function() { $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { buttonId: { label: 'source code', type: 'button', icon: '//mcmodding.jp/modding/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: '//mcmodding.jp/modding/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: '//mcmodding.jp/modding/extensions/WikiEditor/modules/images/toolbar/color-red.png', action: { type: 'encapsulate', options: { pre: '<span style="color: red">', peri: 'Insert text', post: '</span>' } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { buttonId: { label: 'blue', type: 'button', icon: '//mcmodding.jp/modding/extensions/WikiEditor/modules/images/toolbar/color-blue.png', action: { type: 'encapsulate', options: { pre: '<span style="color: blue">', peri: 'Insert text', post: '</span>' } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { buttonId: { label: 'del', type: 'button', icon: '//mcmodding.jp/modding/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: '//mcmodding.jp/modding/extensions/WikiEditor/modules/images/toolbar/notoc.png', action: { type: 'encapsulate', options: { pre: '__NOTOC__', } } } } } ); }); }