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

lint issues

parent 30435ad0
No related branches found
No related tags found
2 merge requests!115Resolve "admin panel should use API",!114Resolve "admin panel should use API"
...@@ -2,13 +2,17 @@ ...@@ -2,13 +2,17 @@
<dictionary name="piotr.gawron"> <dictionary name="piotr.gawron">
<words> <words>
<w>antisense</w> <w>antisense</w>
<w>arrowthickstop</w>
<w>biocompendium</w> <w>biocompendium</w>
<w>celldesigner</w> <w>celldesigner</w>
<w>chebi</w> <w>chebi</w>
<w>chembl</w> <w>chembl</w>
<w>drugbank</w> <w>drugbank</w>
<w>embl</w>
<w>ensembl</w> <w>ensembl</w>
<w>entrez</w> <w>entrez</w>
<w>genomics</w>
<w>glyphicon</w>
<w>heterodimer</w> <w>heterodimer</w>
<w>hgnc</w> <w>hgnc</w>
<w>hmdb</w> <w>hmdb</w>
...@@ -17,18 +21,31 @@ ...@@ -17,18 +21,31 @@
<w>kegg</w> <w>kegg</w>
<w>lcsb</w> <w>lcsb</w>
<w>mapviewer</w> <w>mapviewer</w>
<w>mirtarbase</w>
<w>ncbigene</w> <w>ncbigene</w>
<w>omim</w> <w>omim</w>
<w>onerror</w>
<w>onkeypress</w>
<w>onload</w>
<w>ontouchstart</w>
<w>orderable</w>
<w>pubchem</w> <w>pubchem</w>
<w>pubmed</w> <w>pubmed</w>
<w>reactome</w> <w>reactome</w>
<w>refseq</w> <w>refseq</w>
<w>rnas</w>
<w>saccharomyces</w> <w>saccharomyces</w>
<w>sbgn</w> <w>sbgn</w>
<w>smtp</w> <w>smtp</w>
<w>submap</w> <w>submap</w>
<w>submaps</w> <w>submaps</w>
<w>submodel</w>
<w>tbody</w>
<w>textarea</w>
<w>thead</w>
<w>toxicogenomic</w> <w>toxicogenomic</w>
<w>toxicogenomics</w>
<w>typeahead</w>
<w>uniprot</w> <w>uniprot</w>
<w>wikipathways</w> <w>wikipathways</w>
</words> </words>
......
This diff is collapsed.
...@@ -38,16 +38,16 @@ AbstractExportPanel.prototype._createMiriamTypeDiv = function (annotations) { ...@@ -38,16 +38,16 @@ AbstractExportPanel.prototype._createMiriamTypeDiv = function (annotations) {
var typeDiv = Functions.createElement({ var typeDiv = Functions.createElement({
type: "div", type: "div",
name: "miriamSelectDiv", name: "miriamSelectDiv",
className: "minerva-export-dual-listbox-container", className: "minerva-export-dual-listbox-container"
}); });
typeDiv.appendChild(Functions.createElement({ typeDiv.appendChild(Functions.createElement({
type: "h4", type: "h4",
content: " Annotations:", content: " Annotations:"
})); }));
var selectElement = Functions.createElement({ var selectElement = Functions.createElement({
type: "select", type: "select",
className: "minerva-multi-select", className: "minerva-multi-select"
}); });
typeDiv.appendChild(selectElement); typeDiv.appendChild(selectElement);
...@@ -94,7 +94,7 @@ AbstractExportPanel.prototype.createDualListbox = function (selectElement) { ...@@ -94,7 +94,7 @@ AbstractExportPanel.prototype.createDualListbox = function (selectElement) {
AbstractExportPanel.prototype._createSelectTypeDiv = function (elementTypes) { AbstractExportPanel.prototype._createSelectTypeDiv = function (elementTypes) {
var typeDiv = Functions.createElement({ var typeDiv = Functions.createElement({
type: "div", type: "div",
name: "typeSelectDiv", name: "typeSelectDiv"
}); });
typeDiv.appendChild(Functions.createElement({ typeDiv.appendChild(Functions.createElement({
type: "h4", type: "h4",
...@@ -156,11 +156,11 @@ AbstractExportPanel.prototype.getMiriamTypesDualListbox = function () { ...@@ -156,11 +156,11 @@ AbstractExportPanel.prototype.getMiriamTypesDualListbox = function () {
AbstractExportPanel.prototype._createSelectColumnDiv = function (columnTypes) { AbstractExportPanel.prototype._createSelectColumnDiv = function (columnTypes) {
var columnDiv = Functions.createElement({ var columnDiv = Functions.createElement({
type: "div", type: "div",
name: "columnSelectDiv", name: "columnSelectDiv"
}); });
columnDiv.appendChild(Functions.createElement({ columnDiv.appendChild(Functions.createElement({
type: "h4", type: "h4",
content: " COLUMN:", content: " COLUMN:"
})); }));
var choicesContainer = Functions.createElement({ var choicesContainer = Functions.createElement({
type: "ul", type: "ul",
...@@ -279,7 +279,7 @@ AbstractExportPanel.prototype._createDownloadButton = function () { ...@@ -279,7 +279,7 @@ AbstractExportPanel.prototype._createDownloadButton = function () {
var downloadDiv = Functions.createElement({ var downloadDiv = Functions.createElement({
type: "div", type: "div",
name: "downloadDiv", name: "downloadDiv",
style: "clear:both; padding: 10px;", style: "clear:both; padding: 10px;"
}); });
var button = Functions.createElement({ var button = Functions.createElement({
type: "button", type: "button",
...@@ -299,7 +299,7 @@ AbstractExportPanel.prototype._createDownloadButton = function () { ...@@ -299,7 +299,7 @@ AbstractExportPanel.prototype._createDownloadButton = function () {
GuiConnector.hideProcessing(); GuiConnector.hideProcessing();
GuiConnector.alert(error); GuiConnector.alert(error);
}); });
}, }
}); });
downloadDiv.appendChild(button); downloadDiv.appendChild(button);
...@@ -316,18 +316,18 @@ AbstractExportPanel.prototype._createSelectIncludedCompartmentDiv = function () ...@@ -316,18 +316,18 @@ AbstractExportPanel.prototype._createSelectIncludedCompartmentDiv = function ()
var typeDiv = Functions.createElement({ var typeDiv = Functions.createElement({
type: "div", type: "div",
name: "includedCompartmentSelectDiv", name: "includedCompartmentSelectDiv",
className: "minerva-export-dual-listbox-container", className: "minerva-export-dual-listbox-container"
}); });
typeDiv.appendChild(Functions.createElement({ typeDiv.appendChild(Functions.createElement({
type: "h4", type: "h4",
content: " Included compartment/pathways:", content: " Included compartment/pathways:"
})); }));
return self._getCompartmentNames().then(function (compartmentNames) { return self._getCompartmentNames().then(function (compartmentNames) {
var selectElement = Functions.createElement({ var selectElement = Functions.createElement({
type: "select", type: "select",
className: "minerva-multi-select", className: "minerva-multi-select"
}); });
typeDiv.appendChild(selectElement); typeDiv.appendChild(selectElement);
...@@ -349,18 +349,18 @@ AbstractExportPanel.prototype._createSelectExcludedCompartmentDiv = function () ...@@ -349,18 +349,18 @@ AbstractExportPanel.prototype._createSelectExcludedCompartmentDiv = function ()
var typeDiv = Functions.createElement({ var typeDiv = Functions.createElement({
type: "div", type: "div",
name: "excludedCompartmentSelectDiv", name: "excludedCompartmentSelectDiv",
className: "minerva-export-dual-listbox-container", className: "minerva-export-dual-listbox-container"
}); });
typeDiv.appendChild(Functions.createElement({ typeDiv.appendChild(Functions.createElement({
type: "h4", type: "h4",
content: " Excluded compartment/pathways:", content: " Excluded compartment/pathways:"
})); }));
return self._getCompartmentNames().then(function (compartmentNames) { return self._getCompartmentNames().then(function (compartmentNames) {
var selectElement = Functions.createElement({ var selectElement = Functions.createElement({
type: "select", type: "select",
className: "minerva-multi-select", className: "minerva-multi-select"
}); });
typeDiv.appendChild(selectElement); typeDiv.appendChild(selectElement);
......
...@@ -59,7 +59,7 @@ UserPreferences.prototype.getElementValidAnnotations = function (className) { ...@@ -59,7 +59,7 @@ UserPreferences.prototype.getElementValidAnnotations = function (className) {
return this._elementValidAnnotations[className]; return this._elementValidAnnotations[className];
}; };
UserPreferences.prototype.toExport = function (className) { UserPreferences.prototype.toExport = function () {
return { return {
"project-upload": { "project-upload": {
"auto-resize": this._projectUpload.autoResize, "auto-resize": this._projectUpload.autoResize,
......
...@@ -26,6 +26,7 @@ var User = require("../../main/js/map/data/User"); ...@@ -26,6 +26,7 @@ var User = require("../../main/js/map/data/User");
var Cookies = require('js-cookie'); var Cookies = require('js-cookie');
var fs = require('fs'); var fs = require('fs');
var Promise = require('bluebird');
var GuiConnector = require('../../main/js/GuiConnector'); var GuiConnector = require('../../main/js/GuiConnector');
......
"use strict"; "use strict";
require("../../mocha-config") require("../../mocha-config");
/* exported logger */ /* exported logger */
var UserPreferences = require('../../../../main/js/map/data/UserPreferences'); var UserPreferences = require('../../../../main/js/map/data/UserPreferences');
...@@ -10,9 +10,6 @@ var logger = require('../../logger'); ...@@ -10,9 +10,6 @@ var logger = require('../../logger');
var chai = require('chai'); var chai = require('chai');
var assert = chai.assert; var assert = chai.assert;
var fs = require('fs');
var Promise = require('fs');
describe('UserPreferences', function () { describe('UserPreferences', function () {
it("constructor", function () { it("constructor", function () {
return helper.readFile("testFiles/preferences.json").then(function (content) { return helper.readFile("testFiles/preferences.json").then(function (content) {
...@@ -25,6 +22,6 @@ describe('UserPreferences', function () { ...@@ -25,6 +22,6 @@ describe('UserPreferences', function () {
assert.ok(object.getElementValidAnnotations("lcsb.mapviewer.model.map.species.Protein").length > 0); assert.ok(object.getElementValidAnnotations("lcsb.mapviewer.model.map.species.Protein").length > 0);
assert.ok(object.getElementRequiredAnnotations("lcsb.mapviewer.model.map.species.Protein").requiredAtLeastOnce); assert.ok(object.getElementRequiredAnnotations("lcsb.mapviewer.model.map.species.Protein").requiredAtLeastOnce);
assert.ok(object.getElementRequiredAnnotations("lcsb.mapviewer.model.map.species.Protein").list.length > 0); assert.ok(object.getElementRequiredAnnotations("lcsb.mapviewer.model.map.species.Protein").list.length > 0);
}) });
}); });
}); });
...@@ -8,8 +8,6 @@ require("./mocha-config.js"); ...@@ -8,8 +8,6 @@ require("./mocha-config.js");
var Alias = require('../../main/js/map/data/Alias'); var Alias = require('../../main/js/map/data/Alias');
var minerva = require('../../main/js/minerva'); var minerva = require('../../main/js/minerva');
var GuiConnectorMock = require('./GuiConnector-mock');
var ServerConnectorMock = require('./ServerConnector-mock');
var ServerConnectorMock = require('./ServerConnector-mock'); var ServerConnectorMock = require('./ServerConnector-mock');
var chai = require('chai'); var chai = require('chai');
......
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