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:
@@ -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 += " <span title=\"Core Reviewer\">✻</span>"
|
||||
} else if (data[i].core) {
|
||||
data[i].link += " ✬ <small><i>" + data[i].core + "</i></small>";
|
||||
}
|
||||
|
||||
@@ -64,7 +64,7 @@
|
||||
}
|
||||
|
||||
if (tableData[i].core == "master") {
|
||||
tableData[i].link += " ✻";
|
||||
tableData[i].link += " <span title=\"Core Reviewer\">✻</span>";
|
||||
summary.core_marks += tableData[i].mark;
|
||||
summary.core_reviewers ++;
|
||||
} else if (tableData[i].core) {
|
||||
|
||||
Reference in New Issue
Block a user