User:This, that and the other/common.js

Hello, you have come here looking for the meaning of the word User:This, that and the other/common.js. In DICTIOUS you will not only get to know all the dictionary meanings for the word User:This, that and the other/common.js, but we will also tell you about its etymology, its characteristics and you will know how to say User:This, that and the other/common.js in singular and plural. Everything you need to know about the word User:This, that and the other/common.js you have here. The definition of the word User:This, that and the other/common.js will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofUser:This, that and the other/common.js, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
// Add strikethrough button to WikiEditor toolbar
if (.includes(mw.config.get('wgAction'))) {
	mw.hook('wikiEditor.toolbarReady').add($textarea => {
		// Configure a new toolbar entry on the given $textarea jQuery object.
		$textarea.wikiEditor('addToToolbar', {
			section: 'advanced',
			group: 'format',
			tools: {
				strikethrough: {
					label: 'Strike',
					type: 'button',
					oouiIcon: 'strikethrough',
					action: {
						type: 'encapsulate',
						options: {
							pre: "<s>",
							post: "</s>"
						}
					}
				}
			}
		});
	});
}