User:Ricordisamoa/emoticons/Green alien.js

From Meta, a Wikimedia project coordination wiki

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* <nowiki>
 * Set of smilies from a Green alien set
 * [[commons:Category:Smilies - aliens]]
*/
$(function(){
	if($('#wpTextbox1').length===0) return;
	$('#wpTextbox1').wikiEditor('addToToolbar',{
		'section': 'emoticons',
		'groups': {
			'smilies-green-alien': {
				'label': 'Green alien'
			}
		}
	});
	var emotigroup={
		'section': 'emoticons',
		'group': 'smilies-green-alien',
		'tools': {}
	},
	prefix='Smiley green alien';
	$.each(['','aaah','big eyes','black ninja','blush','bored','bubble','cool','cry','dead ninja','deep sleep','depresive',
	'determined','disapointed','doof','dreamy love','droling','drunk happy','drunk sad','drunk wasted','exterminate',
	'flustered','geek oh','GRRR','gun','happy going','happy love','hot fever','huf','huh','indiferent','knockout','KO',
	'lipbite','lipsealed','lol','mmm','moustache','naah','nerdy','o oh','red','sad','satisfied','scary ohh','sherlock',
	'sick','sickening','sickoff','sleepy','sorry','surprised love','sword','unhappy','weap','whaaa','whatface',
	'white ninja','why','wink','worried','wow'],function(i,emoticon){
		var em=prefix+emoticon.replace(/^(.+)$/,' $1'),
		ucFirst = emoticon.charAt( 0 ).toUpperCase() + emoticon.slice( 1 );
		emotigroup.tools[ucFirst]={
			label: ucFirst,
			type: 'button',
			icon: '//commons.wikimedia.org/wiki/Special:Filepath/'+mw.util.wikiUrlencode(em)+'.svg',
			action: {
				type: 'encapsulate',
				options: {
					pre: '[[File:'+em+'.svg|20px]]',
					post: ''
				}
			}
		};
	} );
	$('#wpTextbox1').wikiEditor('addToToolbar',emotigroup);
});