summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/resources/js/ext.translate.selecttoinput.js
blob: cb4a51bd816e87adb3408f3909502f6e6bb3a22e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
window.appendFromSelect = function ( selectid, targetid ) {
	'use strict';

	var select = document.getElementById( selectid ),
		target = document.getElementById( targetid ),
		atxt;

	if ( !target || !select ) {
		return;
	}

	atxt = select.options[ select.selectedIndex ].value;

	if ( !atxt ) {
		return;
	}

	if ( target.value.replace( /\s+/g, '' ) !== '' ) {
		atxt = ', ' + atxt;
	}

	atxt = target.value + atxt;

	atxt = atxt.replace( /\bdefault\b[,\s]*/i, '' );

	target.value = atxt;
};