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

uneeded commas removed

parent f0936035
No related branches found
No related tags found
1 merge request!295Resolve "alternative to google maps api way of visualizing maps"
Showing
with 21 additions and 21 deletions
......@@ -131,7 +131,7 @@ Export.prototype.addTab = function(params, navElement, contentElement) {
this._panels.push(new params.panelClass({
element : contentDiv,
project : self.getProject(),
configuration : self.getConfiguration(),
configuration : self.getConfiguration()
}));
};
......
......@@ -200,7 +200,7 @@ ObjectWithListeners.prototype.firePropertyChangeListener = function (propertyNam
propertyName: propertyName,
object: self,
oldVal: oldValue,
newVal: newValue,
newVal: newValue
};
promises.push(listenerList[i](e));
}
......
......@@ -13,7 +13,7 @@ var SessionObjectType = {
ZOOM_LEVEL : "ZOOM_LEVEL",
TOKEN: "MINERVA_AUTH_TOKEN",
LOGIN: "LOGIN",
LOGIN: "LOGIN"
};
module.exports = SessionObjectType;
......@@ -208,7 +208,7 @@ Panel.prototype.openDialog = function (content, options) {
contentDiv.style.display = "none";
$(this).dialog('destroy');
},
dialogClass: options.className,
dialogClass: options.className
});
this.assignDialogOptions(div, options);
......
......@@ -54,7 +54,7 @@ var PanelControlElementType = {
MENU_SHOW_OVERVIEW_BUTTON : "MENU_SHOW_OVERVIEW_BUTTON",
MENU_VERSION_DIV : "MENU_VERSION_DIV",
FOOTER_LOADING_DIV : "FOOTER_LOADING_DIV",
FOOTER_LOADING_DIV : "FOOTER_LOADING_DIV"
};
module.exports = PanelControlElementType;
......@@ -98,7 +98,7 @@ AbstractExportPanel.prototype._createSelectTypeDiv = function (elementTypes) {
});
typeDiv.appendChild(Functions.createElement({
type: "h4",
content: " TYPE:",
content: " TYPE:"
}));
var choicesContainer = Functions.createElement({
type: "ul",
......
......@@ -73,7 +73,7 @@ ElementExportPanel.prototype.createResponseString = function () {
type: types,
complete: true,
includedCompartmentIds: includedCompartmentIds,
excludedCompartmentIds: excludedCompartmentIds,
excludedCompartmentIds: excludedCompartmentIds
}));
}
return Promise.all(promises);
......
......@@ -179,7 +179,7 @@ NetworkExportPanel.prototype.createResponseString = function () {
type: types,
complete: true,
includedCompartmentIds: includedCompartmentIds,
excludedCompartmentIds: excludedCompartmentIds,
excludedCompartmentIds: excludedCompartmentIds
}));
}
return Promise.all(promises);
......
......@@ -45,7 +45,7 @@ LeftPanel.prototype._createPanelGui = function () {
var header = new Header({
element: headerDiv,
customMap: self.getMap(),
optionsMenu: true,
optionsMenu: true
});
self.getElement().appendChild(headerDiv);
......
......@@ -89,23 +89,23 @@ ProjectInfoPanel.prototype._createInfoPanelGui = function () {
infoDiv.appendChild(infoTitle);
var dialogDiv = Functions.createElement({
type: "div",
type: "div"
});
this.publicationListDialog = new PublicationListDialog({
customMap: self.getMap(),
element: dialogDiv,
element: dialogDiv
});
dataTab = Functions.createElement({
type: "ul",
type: "ul"
});
infoDiv.appendChild(dataTab);
var projectPublicationsText = Functions.createElement({
type: "span",
name: "projectPublicationsText",
style: "font-family:FontAwesome; font-weight: normal;font-style: normal;cursor: pointer",
style: "font-family:FontAwesome; font-weight: normal;font-style: normal;cursor: pointer"
});
this.setControlElement(PanelControlElementType.INFO_PROJECT_PUBLICATIONS_TEXT, projectPublicationsText);
......
......@@ -134,7 +134,7 @@ PublicationListDialog.prototype.show = function () {
autoOpen: false,
resizable: false,
width: Math.max(window.innerWidth / 2, window.innerWidth - 100),
height: Math.max(window.innerHeight / 2, window.innerHeight - 100),
height: Math.max(window.innerHeight / 2, window.innerHeight - 100)
});
}
......
......@@ -41,7 +41,7 @@ TopMenu.prototype._createGui = function () {
var hideButton = Functions.createElement({
type: "button",
className: "headerHideButton",
name: "hideButton",
name: "hideButton"
});
hideButtonDiv.appendChild(hideButton);
self.setControlElement(PanelControlElementType.MENU_HIDE_LEFT_PANEL_BUTTON, hideButton);
......@@ -49,7 +49,7 @@ TopMenu.prototype._createGui = function () {
var hideButtonIcon = Functions.createElement({
type: "i",
className: "fa fa-chevron-left",
name: "hideButtonIcon",
name: "hideButtonIcon"
});
hideButton.appendChild(hideButtonIcon);
self.setControlElement(PanelControlElementType.MENU_HIDE_LEFT_PANEL_BUTTON_ICON, hideButtonIcon);
......
......@@ -83,7 +83,7 @@ MapModel.prototype.getAliases = function (params) {
type: params.type,
modelId: self.getId(),
includedCompartmentIds: params.includedCompartmentIds,
excludedCompartmentIds: params.excludedCompartmentIds,
excludedCompartmentIds: params.excludedCompartmentIds
}).then(function (lightAliases) {
var identifiedElements = [];
......
......@@ -124,7 +124,7 @@ UserDbOverlay.prototype.addSurface = function (params) {
self.enableAddRemoveElements();
return self.callListeners("onSearch", {
fitBounds: false,
identifiedElements: elements,
identifiedElements: elements
});
}).then(null, function (error) {
self.enableAddRemoveElements();
......@@ -151,7 +151,7 @@ UserDbOverlay.prototype.removeMarker = function (params) {
self.enableAddRemoveElements();
return self.callListeners("onSearch", {
fitBounds: false,
identifiedElements: elements,
identifiedElements: elements
});
}).then(null, function (error) {
self.enableAddRemoveElements();
......@@ -177,7 +177,7 @@ UserDbOverlay.prototype.removeSurface = function (params) {
self.enableAddRemoveElements();
return self.callListeners("onSearch", {
fitBounds: false,
identifiedElements: elements,
identifiedElements: elements
});
}).then(null, function (error) {
self.enableAddRemoveElements();
......@@ -241,7 +241,7 @@ UserDbOverlay.prototype.clear = function () {
};
return self.callListeners("onSearch", {
fitBounds: false,
identifiedElements: [],
identifiedElements: []
});
};
......
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