Fix/capability map label (#40)

* Adjust quotes.

* Change capability map labels to be first, last, title rather thant title first, last
This commit is contained in:
Ted Lawless 2016-07-20 10:36:55 -04:00 committed by grahamtriggs
parent b378688713
commit 649b0cfd45
2 changed files with 3 additions and 3 deletions

View file

@ -68,7 +68,7 @@ var Person = function(info) {
this.setInfo(info);
}
Person.prototype.fullname = function() {
return this.info["md_Z"] + " " + this.info["md_A"] + " " + this.info["md_B"];
return this.info["md_A"] + " " + this.info["md_B"] + ", " + this.info["md_Z"];
}
Person.prototype.queryText = function(capabilities) {
return ("\"" + this.info["md_A"] + "+" + this.info["md_B"] + "\"+[" + capabilities.map(function(a) { return decodeURIComponent(a.term); }).join("+") + "]").replace(/<\/?strong>/g, "");

View file

@ -62,7 +62,7 @@ ${stylesheets.add(
</p>
<h3>Getting Started</h3>
<p>
Enter a research area into the search field above and press Search.
Enter a research area into the search field above and press 'Search'.
The resulting diagram displays the search term, rendered in orange,
connected to the blue group of researchers that are active in that area.
Enter another search term to see how researchers from both searches relate.
@ -76,7 +76,7 @@ ${stylesheets.add(
<p>
By clicking on any node in the visualisation,
additional information can be viewed in the
Info tab on the right-hand side.
'Info' tab on the right-hand side.
For groups of people, the participants in the group
and their information can be viewed,
and individual researchers can be removed from the graph.