Skip to content

Commit 2e2bf32

Browse files
committed
Fix affil listing, hide log
debug
1 parent bace9aa commit 2e2bf32

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

affiliated/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ <h2 id="new-affil-reviewer">I am a new reviewer<a class="paralink" href="#new-af
419419
continue;
420420
}
421421

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

424425
nmcell = namerow.insertCell(0);

js/functions.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ function createRolesDescription(roles) {
241241
role['responsibilities'] = [role['responsibilities']];
242242
}
243243

244-
console.log(role['responsibilities']);
244+
//console.log(role['responsibilities']);
245245

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

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

253-
console.log(resp);
253+
//console.log(resp);
254254

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

403403
for (key in review_name_map) {
404-
console.log("K"+key);
404+
//console.log("K"+key);
405405
if (review_name_map.hasOwnProperty(key)) {
406406
shield_name = review_name_map[key];
407407
if ("review" in pkg && key in pkg.review ) {

0 commit comments

Comments
 (0)