Jump to content

User:Goodshoped35110s/Scripts/efd.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
categories.append( {
			type: 'option',
			label: 'Efd',
			selected: wgNamespaceNumber == Namespace.USER,
			value: 'efd'

case 'mfd':
		work_area = new QuickForm.element( { 
				type: 'field',
				label: 'Editor for deletion',
				name: 'work_area'
			} );
		work_area.append( {
				type: 'textarea',
				name: 'efdreason',
				label: 'Reason: '
			} );
		work_area.append( { type:'submit' } );
		work_area = work_area.render();
		old_area.parentNode.replaceChild( work_area, old_area );
		break;