Skip to content

Commit

Permalink
Fix affil listing, hide log
Browse files Browse the repository at this point in the history
debug
  • Loading branch information
pllim committed Nov 19, 2024
1 parent bace9aa commit 2e2bf32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions affiliated/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ <h2 id="new-affil-reviewer">I am a new reviewer<a class="paralink" href="#new-af
continue;
}

console.log("HERE "+i+" "+package)
namerow = tab.insertRow(i*4 + 1);

nmcell = namerow.insertCell(0);
Expand Down
6 changes: 3 additions & 3 deletions js/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ function createRolesDescription(roles) {
role['responsibilities'] = [role['responsibilities']];
}

console.log(role['responsibilities']);
//console.log(role['responsibilities']);

blocks += '<br/>' +
'<h3 id="' + role["url"] + '">' + role["role-head"] + '</h3>';
Expand All @@ -250,7 +250,7 @@ function createRolesDescription(roles) {

role['responsibilities'].forEach(function (resp) {

console.log(resp);
//console.log(resp);

detail_list = '';
resp["details"].forEach(function (detail) {
Expand Down Expand Up @@ -401,7 +401,7 @@ function makeShields(pkg) {
var key, shield_name, pkgvalue, color, url;

for (key in review_name_map) {
console.log("K"+key);
//console.log("K"+key);
if (review_name_map.hasOwnProperty(key)) {
shield_name = review_name_map[key];
if ("review" in pkg && key in pkg.review ) {
Expand Down

0 comments on commit 2e2bf32

Please sign in to comment.