_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Alex Great/common.js

In today's world, User:Alex Great/common.js has become a topic of great relevance and interest to both experts and the general public. The impact of User:Alex Great/common.js extends to all aspects of our daily lives, from the way we relate to others to the impact it has on the environment. With technological progress and advances in society, User:Alex Great/common.js has become an increasingly relevant topic in the academic, business and social fields. In this article, we will further explore the role and importance of User:Alex Great/common.js in our world today, analyzing its implications, challenges and opportunities.
//<nowiki>
/* Кнопки для описания правки */

function insertSummary ( txt ) {
	if ( typeof txt !== 'string' ) {
		txt = this.title;
	}
	var vv = $( '#wpSummary' ).val();
	if ( vv.indexOf( txt ) !== -1 ) {
		return;
	}
	if ( /$/.test( vv ) ) {
		vv += ',';
	}
	if ( /$/.test( vv ) ) {
		vv += ' ';
	}
	$( '#wpSummary' ).val( vv + txt );
}
 
function addSumButton ( btn, txt ) {
	$( '<a title="' + txt + '">' + btn + '</a>' )
		.appendTo( '#userSummaryButtonsA' )
		.click( insertSummary );
}
 
$( function() {
	var frm = document.getElementById( 'editform' );
	if ( !mw.config.get( 'wgArticleId' ) || !frm || $( frm.wpSection ).val() === 'new' ) {
		return;
	}
	mw.util.addCSS( '\
		input#wpSummary { margin-bottom: 0 }\
		#userSummaryButtonsA a { background:#cef; border:1px solid #adf; padding:0 2px;\
			margin:0 2px;cursor:pointer; font-size:86%; color:#666 }\
		#userSummaryButtonsA a:hover { background:#bdf; color:black; text-decoration:none }' );
	$( '<div id=userSummaryButtonsA />' ).insertAfter( '#wpSummary' );
	$.each(
		[
		'wiki|fication', 'stylization', 'minor| changes', 'ortho|graphy',
		'punctu|ation', 'reply', 'comment|ary', 'cat|egory', 'templat|ization', 'doc|umentation', 'deletion',
		'illustration', 'add|ition', 'specification', 'update', 'interwiki', 'vandalism'
		],
		function ( i, s ) {
			addSumButton( s.replace( /\|.*/, '' ), s.replace( /\|/, '' ) );
		}
	);
} );
//</nowiki>