diff --git a/frontend-js/src/main/js/gui/admin/AddProjectDialog.js b/frontend-js/src/main/js/gui/admin/AddProjectDialog.js index 534567b18245832b32a50ec943b48aa0fce3c571..77cf432d9a04e7914304a0be2f139763a7a6128b 100644 --- a/frontend-js/src/main/js/gui/admin/AddProjectDialog.js +++ b/frontend-js/src/main/js/gui/admin/AddProjectDialog.js @@ -217,12 +217,29 @@ AddProjectDialog.prototype.createGeneralTabContent = function () { table.appendChild(self.createInputRow({ labelName: "Project name:", defaultValue: "NEW DISEASE MAP", - inputName: "project-name" + inputName: "project-name", + help: 'The name of the uploaded project displayed in the top left corner of the Admin and User panels; your official name of the project.' + })); + table.appendChild(self.createInputRow({ + labelName: "Project Disease:", + inputName: "project-disease", + help: 'Mesh ID identifying disease connected to this map (ie. for Parkinson\'s Disease it would be D010300).' + })); + table.appendChild(self.createInputRow({ + labelName: "Organism:", + inputName: "project-organism", + help: 'Taxonomy ID identifying organism for which project is dedicated (ie. for Human map it would be 9606).' + })); + table.appendChild(self.createInputRow({ + labelName: "Version:", + inputName: "project-version", + help: 'A text field displayed next to the name of your project in the User panel.' + })); + table.appendChild(self.createInputRow({ + labelName: "Notify email:", + inputName: "project-notify-email", + help: 'E-mail address that should be used for project change notifications.' })); - table.appendChild(self.createInputRow({labelName: "Project Disease:", inputName: "project-disease"})); - table.appendChild(self.createInputRow({labelName: "Organism:", inputName: "project-organism"})); - table.appendChild(self.createInputRow({labelName: "Version:", inputName: "project-version"})); - table.appendChild(self.createInputRow({labelName: "Notify email:", inputName: "project-notify-email"})); var showAnnotatorsButton = Functions.createElement({ type: "button",