提供: defeatedcrow mod wiki
移動先: 案内検索
(ページの作成:「ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます: <script type="text/javascript...」)
 
 
(同じ利用者による、間の6版が非表示)
1行目: 1行目:
 
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
 
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
  
<script type="text/javascript">
+
// Check that the toolbar is available
jQuery(function() {
+
if ( typeof $j !== 'undefined' && typeof $j.fn.wikiEditor !== 'undefined' ) {
     /* click tracking google ana */
+
     // Execute on load
     jQuery("a").click(function(e) {
+
     $j( function() {
         var ahref = jQuery(this).attr('href');
+
         $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        if (ahref.indexOf("defeatedcrow.jp/modwiki") != -1 || ahref.indexOf("http") == -1 ) {
+
        section: 'advanced',
            _gaq.push(['_trackEvent', 'Inbound Links', 'Click', ahref]);
+
        group: 'format',
        }
+
        tools: {
         else {
+
          "math": {
            _gaq.push(['_trackEvent', 'Outbound Links', 'Click', ahref]);
+
          label: 'Java',
        }
+
          type: 'button',
    });
+
          icon: '//modwiki/extensions/WikiEditor/modules/images/toolbar/added-code.png',
});
+
          action: {
</script>
+
          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;">' }
 +
}
 +
]
 +
}
 +
}
 +
} );
 +
    }
 +
}

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;">' }
						}
					]
				}
			}
		} );
    }
}