Add tooltip to star symbol which marks core reviewers

This commit adds a mouseover text to the star symbol which marks
members of core reviewers team.

Change-Id: I9847729bf36f069c47e841e036859d29262e783c
This commit is contained in:
Roman Gorshunov
2019-08-12 17:08:04 +02:00
parent 31346ff89c
commit 2ef241db44
2 changed files with 2 additions and 2 deletions

View File

@@ -139,7 +139,7 @@ function renderTableAndChart(url, container_id, table_id, chart_id, link_param,
}
if (data[i].core == "master") {
data[i].link += ' ✻'
data[i].link += "&nbsp;<span title=\"Core Reviewer\">&#x273B;</span>"
} else if (data[i].core) {
data[i].link += "&nbsp;&#x272C; <small><i>" + data[i].core + "</i></small>";
}

View File

@@ -64,7 +64,7 @@
}
if (tableData[i].core == "master") {
tableData[i].link += "&nbsp;&#x273B;";
tableData[i].link += "&nbsp;<span title=\"Core Reviewer\">&#x273B;</span>";
summary.core_marks += tableData[i].mark;
summary.core_reviewers ++;
} else if (tableData[i].core) {