f223b984ddff0e356ab6815dd9ecec9d3c020002 galt Wed Nov 18 13:29:15 2015 -0800 User requested allowing longer URL diff --git src/hg/hgCustom/hgCustom.c src/hg/hgCustom/hgCustom.c index df02b5a..0de51df 100644 --- src/hg/hgCustom/hgCustom.c +++ src/hg/hgCustom/hgCustom.c @@ -572,31 +572,31 @@ /* Delete checkboxes */ printf("<TD COLSPAN=%d ALIGN=CENTER>", showAllButtons ? 2 : 1); safef(buf, sizeof(buf), "%s_%s", hgCtDeletePrefix, ct->tdb->track); cgiMakeCheckBoxJS(buf, setAllDelete, "class='deleteCheckbox'"); puts("</TD>"); /* Update checkboxes */ if (updateCt) { printf("<TD COLSPAN=%d ALIGN=CENTER>", showAllButtons ? 2 : 1); safef(buf, sizeof(buf), "%s_%s", hgCtRefreshPrefix, ct->tdb->track); if ((dataUrl = ctDataUrl(ct)) != NULL) { - char js[1024]; + char js[2048]; safef(js, sizeof(js), "class='updateCheckbox' title='refresh data from: %s'", dataUrl); cgiMakeCheckBoxJS(buf, setAllUpdate, js); } else puts(" "); puts("</TD>"); } puts("</TR>\n"); } if (showAllButtons) { cgiSimpleTableRowStart(); printf("<TD COLSPAN=%d ALIGN='RIGHT'>check all / clear all </TD>", colSpan); cgiSimpleTableFieldStart(); cgiMakeButtonWithOnClick(hgCtDoDeleteSet, "+", "Select all for deletion", "$('.deleteCheckbox').attr('checked', true); return false;");