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 () { ...@@ -135,59 +135,59 @@ ElementExportPanel.prototype.getAllColumns = function () {
return [{ return [{
"columnName": "id", "columnName": "id",
"method": "getId", "method": "getId",
"name": "Id", "name": "Id"
}, { }, {
"columnName": "name", "columnName": "name",
"method": "getName", "method": "getName",
"name": "Name", "name": "Name"
}, { }, {
"columnName": "description", "columnName": "description",
"method": "getDescription", "method": "getDescription",
"name": "Description", "name": "Description"
}, { }, {
"columnName": "modelId", "columnName": "modelId",
"method": "getModelId", "method": "getModelId",
"name": "Model", "name": "Model"
}, { }, {
"columnName": "type", "columnName": "type",
"method": "getType", "method": "getType",
"name": "Type", "name": "Type"
}, { }, {
"columnName": "complexId", "columnName": "complexId",
"method": "getComplexId", "method": "getComplexId",
"name": "Complex", "name": "Complex"
}, { }, {
"columnName": "compartmentId", "columnName": "compartmentId",
"method": "getCompartmentId", "method": "getCompartmentId",
"name": "Compartment", "name": "Compartment"
}, { }, {
"columnName": "charge", "columnName": "charge",
"method": "getCharge", "method": "getCharge",
"name": "Charge", "name": "Charge"
}, { }, {
"columnName": "symbol", "columnName": "symbol",
"method": "getSymbol", "method": "getSymbol",
"name": "Symbol", "name": "Symbol"
}, { }, {
"columnName": "fullName", "columnName": "fullName",
"method": "getFullName", "method": "getFullName",
"name": "Full name", "name": "Full name"
}, { }, {
"columnName": "abbreviation", "columnName": "abbreviation",
"method": "getAbbreviation", "method": "getAbbreviation",
"name": "Abbreviation", "name": "Abbreviation"
}, { }, {
"columnName": "formula", "columnName": "formula",
"method": "getFormula", "method": "getFormula",
"name": "Formula", "name": "Formula"
}, { }, {
"columnName": "synonyms", "columnName": "synonyms",
"method": "getSynonyms", "method": "getSynonyms",
"name": "Synonyms", "name": "Synonyms"
}, { }, {
"columnName": "formerSymbols", "columnName": "formerSymbols",
"method": "getFormerSymbols", "method": "getFormerSymbols",
"name": "Former symbols", "name": "Former symbols"
}, { }, {
"columnName": "references", "columnName": "references",
"method": "getReferences", "method": "getReferences",
...@@ -199,16 +199,16 @@ ElementExportPanel.prototype.getAllColumns = function () { ...@@ -199,16 +199,16 @@ ElementExportPanel.prototype.getAllColumns = function () {
stringBuilder.push(reference.getType() + ":" + reference.getResource()); stringBuilder.push(reference.getType() + ":" + reference.getResource());
} }
return stringBuilder.join(","); return stringBuilder.join(",");
}, }
}, { }, {
"columnName": "linkedSubmodelId", "columnName": "linkedSubmodelId",
"method": "getLinkedSubmodelId", "method": "getLinkedSubmodelId",
"name": "Linked submodel", "name": "Linked submodel"
}, { }, {
"columnName": "elementId", "columnName": "elementId",
"method": "getElementId", "method": "getElementId",
"name": "Element external id", "name": "Element external id"
},]; }];
}; };
......
...@@ -35,7 +35,7 @@ function DbOverlayCollection(params) { ...@@ -35,7 +35,7 @@ function DbOverlayCollection(params) {
name : "comment", name : "comment",
allowSearchById : false, allowSearchById : false,
allowGeneralSearch : true allowGeneralSearch : true
}, ]; } ];
var map = params.map; 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