f63c078a660d0fef8895ce0774092855be19d52b max Mon Jun 20 15:45:11 2016 -0700 taking back bigBed click word wrap change, refs #17370 diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c index 84fb619..fdb3bd1 100644 --- src/hg/hgc/hgc.c +++ src/hg/hgc/hgc.c @@ -1591,33 +1591,31 @@ count++; // do not print a row if the fieldName from the .as file is in the "skipFields" list if (skipIds && slNameInList(skipIds, fieldName)) continue; // skip this row if it's empty and "skipEmptyFields" option is set if (skipEmptyFields && isEmpty(fields[ix])) continue; // split this table to separate current row from the previous one, if the trackDb option is set if (sepFields && slNameInList(sepFields, fieldName)) printf("</tr></table>\n<p>\n<table class='bedExtraTbl'>"); // field description - puts("<tr><td>"); - printAddWbr(col->comment, 10); - puts("</td>"); // bold style now in HGStyle.css + printf("<tr><td>%s</td>", col->comment); // bold style now in HGStyle.css if (col->isList || col->isArray || col->lowType->stringy || asTypesIsInt(col->lowType->type)) printIdOrLinks(col, fieldToUrl, tdb, fields[ix]); else if (asTypesIsFloating(col->lowType->type)) { double valDouble = strtod(fields[ix],NULL); if (errno == 0 && valDouble != 0) printf("<td>%g</td></tr>\n", valDouble); else printf("<td>%s</td></tr>\n", fields[ix]); // decided not to print error } else printf("<td>%s</td></tr>\n", fields[ix]); } asObjectFree(&as);