Merge "Add tooltip to star symbol which marks core reviewers"

This commit is contained in:
Zuul 2019-09-16 19:32:49 +00:00 committed by Gerrit Code Review
commit 3eea6eb19d
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) {