Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 417729
Collapse All | Expand All

(-)a/bundles/org.eclipse.orion.client.git/web/orion/git/gitCommands.js (-1 / +8 lines)
Lines 2047-2053 Link Here
2047
		});
2047
		});
2048
		commandService.addCommand(addConfigEntryCommand);
2048
		commandService.addCommand(addConfigEntryCommand);
2049
		
2049
		
2050
		var editConfigParameters = new mCommandRegistry.ParametersDescription([new mCommandRegistry.CommandParameter('value', 'text', messages['Value:'])]); //$NON-NLS-1$ //$NON-NLS-0$
2050
		var editConfigParameters = new mCommandRegistry.ParametersDescription([], null, function(commandInvocation) {
2051
			var items = commandInvocation.items;
2052
			var val;
2053
			if(items) {
2054
				val = items.Value;
2055
			}
2056
			return [new mCommandRegistry.CommandParameter('value', 'text', messages['Value:'], val)]; //$NON-NLS-2$ //$NON-NLS-1$ //$NON-NLS-0$
2057
		});
2051
		
2058
		
2052
		var editConfigEntryCommand = new mCommands.Command({
2059
		var editConfigEntryCommand = new mCommands.Command({
2053
			name: messages["Edit"],
2060
			name: messages["Edit"],

Return to bug 417729