提供: defeatedcrow mod wiki
移動先: 案内検索
 
(同じ利用者による、間の2版が非表示)
1行目: 1行目:
 
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
 
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
  
var customizeToolbar = function() {
+
// Check that the toolbar is available
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
+
if ( typeof $j !== 'undefined' && typeof $j.fn.wikiEditor !== 'undefined' ) {
'section': 'info',
+
    // Execute on load
'pages': {
+
    $j( function() {
'colors': {
+
        $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'layout': 'table',
+
        section: 'advanced',
'label': 'Colors',
+
        group: 'format',
'headings': [
+
        tools: {
{ text: 'Name' }, // or use textMsg for localization, see also above
+
          "math": {
{ text: 'Temperature' },
+
          label: 'Java',
{ text: 'Swatch' }
+
          type: 'button',
],
+
          icon: '//modwiki/extensions/WikiEditor/modules/images/toolbar/added-code.png',
'rows': [
+
          action: {
{
+
          type: 'encapsulate',
'name': { text: 'Red' },
+
          options: {
'temp': { text: 'Warm' },
+
              pre: "<source lang="java">",
'swatch': { html: '<div style="width:10px;height:10px;background-color:red;">' }
+
              post: "</source>"
},
+
  }
{
+
      }
'name': { text: 'Blue' },
+
      }
'temp': { text: 'Cold' },
+
    }
'swatch': { html: '<div style="width:10px;height:10px;background-color:blue;">' }
+
        });
},
+
 
{
+
 
'name': { text: 'Silver' },
+
// To add a booklet section:
'temp': { text: 'Neutral' },
+
$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'swatch': { html: '<div style="width:10px;height:10px;background-color:silver;">' }
+
'sections': {
 +
'info': {
 +
'type': 'booklet',
 +
'label': 'Info'
 
}
 
}
]
+
}
}
+
} );
}
+
} );
+
};
+
  
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
+
        // To add a page to an existing booklet section
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
+
$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
mw.loader.using( 'user.options', function () {
+
'section': 'info',
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
+
'pages': {
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
+
'colors': {
$.when(
+
'layout': 'table',
mw.loader.using( 'ext.wikiEditor.toolbar' ), $.ready
+
'label': 'Colors',
).then( customizeToolbar );
+
'headings': [
}
+
{ text: 'Name' }, // or use textMsg for localization, see also above
} );
+
{ text: 'Temperature' },
 +
{ text: 'Swatch' }
 +
],
 +
'rows': [
 +
{
 +
'name': { text: 'Red' },
 +
'temp': { text: 'Warm' },
 +
'swatch': { html: '<div style="width:10px;height:10px;background-color:red;">' }
 +
},
 +
{
 +
'name': { text: 'Blue' },
 +
'temp': { text: 'Cold' },
 +
'swatch': { html: '<div style="width:10px;height:10px;background-color:blue;">' }
 +
},
 +
{
 +
'name': { text: 'Silver' },
 +
'temp': { text: 'Neutral' },
 +
'swatch': { html: '<div style="width:10px;height:10px;background-color:silver;">' }
 +
}
 +
]
 +
}
 +
}
 +
} );
 +
    }
 
}
 
}
// Add the customizations to LiquidThreads' edit toolbar, if available
 
mw.hook( 'ext.lqt.textareaCreated' ).add( customizeToolbar );
 
 
$( '#wpTextbox1' ).on( 'wikiEditor-toolbar-doneInitialSections', function () {
 
    // Do something
 
} );
 

2018年8月18日 (土) 18:41時点における最新版

/* ここにあるすべての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>"
						  }
				      }
			      }
		     }
        });


		// To add a booklet section:
		$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
			'sections': {
				'info': {
					'type': 'booklet',
					'label': 'Info'
				}
			}
		} );

        // To add a page to an existing booklet section
		$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
			'section': 'info',
			'pages': {
				'colors': {
					'layout': 'table',
					'label': 'Colors',
					'headings': [
						{ text: 'Name' }, // or use textMsg for localization, see also above
						{ text: 'Temperature' },
						{ text: 'Swatch' }
					],
					'rows': [
						{
							'name': { text: 'Red' },
							'temp': { text: 'Warm' },
							'swatch': { html: '<div style="width:10px;height:10px;background-color:red;">' }
						},
						{
							'name': { text: 'Blue' },
							'temp': { text: 'Cold' },
							'swatch': { html: '<div style="width:10px;height:10px;background-color:blue;">' }
						},
						{
							'name': { text: 'Silver' },
							'temp': { text: 'Neutral' },
							'swatch': { html: '<div style="width:10px;height:10px;background-color:silver;">' }
						}
					]
				}
			}
		} );
    }
}