Skip to content
Snippets Groups Projects
Commit f0936035 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

unnecessary commas removed

parent acf3dbbd
No related branches found
No related tags found
1 merge request!295Resolve "alternative to google maps api way of visualizing maps"
......@@ -135,59 +135,59 @@ ElementExportPanel.prototype.getAllColumns = function () {
return [{
"columnName": "id",
"method": "getId",
"name": "Id",
"name": "Id"
}, {
"columnName": "name",
"method": "getName",
"name": "Name",
"name": "Name"
}, {
"columnName": "description",
"method": "getDescription",
"name": "Description",
"name": "Description"
}, {
"columnName": "modelId",
"method": "getModelId",
"name": "Model",
"name": "Model"
}, {
"columnName": "type",
"method": "getType",
"name": "Type",
"name": "Type"
}, {
"columnName": "complexId",
"method": "getComplexId",
"name": "Complex",
"name": "Complex"
}, {
"columnName": "compartmentId",
"method": "getCompartmentId",
"name": "Compartment",
"name": "Compartment"
}, {
"columnName": "charge",
"method": "getCharge",
"name": "Charge",
"name": "Charge"
}, {
"columnName": "symbol",
"method": "getSymbol",
"name": "Symbol",
"name": "Symbol"
}, {
"columnName": "fullName",
"method": "getFullName",
"name": "Full name",
"name": "Full name"
}, {
"columnName": "abbreviation",
"method": "getAbbreviation",
"name": "Abbreviation",
"name": "Abbreviation"
}, {
"columnName": "formula",
"method": "getFormula",
"name": "Formula",
"name": "Formula"
}, {
"columnName": "synonyms",
"method": "getSynonyms",
"name": "Synonyms",
"name": "Synonyms"
}, {
"columnName": "formerSymbols",
"method": "getFormerSymbols",
"name": "Former symbols",
"name": "Former symbols"
}, {
"columnName": "references",
"method": "getReferences",
......@@ -199,16 +199,16 @@ ElementExportPanel.prototype.getAllColumns = function () {
stringBuilder.push(reference.getType() + ":" + reference.getResource());
}
return stringBuilder.join(",");
},
}
}, {
"columnName": "linkedSubmodelId",
"method": "getLinkedSubmodelId",
"name": "Linked submodel",
"name": "Linked submodel"
}, {
"columnName": "elementId",
"method": "getElementId",
"name": "Element external id",
},];
"name": "Element external id"
}];
};
......
......@@ -35,7 +35,7 @@ function DbOverlayCollection(params) {
name : "comment",
allowSearchById : false,
allowGeneralSearch : true
}, ];
} ];
var map = params.map;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment