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 420286
Collapse All | Expand All

(-)a/bundles/org.eclipse.orion.client.ui/web/orion/projects/projectEditor.js (-2 / +2 lines)
Lines 196-206 Link Here
196
		},
196
		},
197
		renderAdditionalProjectProperties: function(parent){
197
		renderAdditionalProjectProperties: function(parent){
198
			this.projectClient.getMatchingProjectHandlers(this.parentFolder).then(function(matchingProjectHandlers){
198
			this.projectClient.getMatchingProjectHandlers(this.parentFolder).then(function(matchingProjectHandlers){
199
			for(var projectHandlerIndex = 0; projectHandlerIndex<matchingProjectHandlers.length; matchingProjectHandlers++){
199
			for(var projectHandlerIndex = 0; projectHandlerIndex<matchingProjectHandlers.length; projectHandlerIndex++){
200
				var projectHandler = matchingProjectHandlers[projectHandlerIndex];
200
				var projectHandler = matchingProjectHandlers[projectHandlerIndex];
201
201
202
				if(!projectHandler || !projectHandler.getAdditionalProjectProperties){
202
				if(!projectHandler || !projectHandler.getAdditionalProjectProperties){
203
					return;
203
					continue;
204
				}
204
				}
205
				this.progress.progress(projectHandler.getAdditionalProjectProperties(this.parentFolder, this.projectData), "Getting additional project information").then(function(additionalProperties){
205
				this.progress.progress(projectHandler.getAdditionalProjectProperties(this.parentFolder, this.projectData), "Getting additional project information").then(function(additionalProperties){
206
					if(!additionalProperties || !additionalProperties.length || additionalProperties.length === 0){
206
					if(!additionalProperties || !additionalProperties.length || additionalProperties.length === 0){

Return to bug 420286