ade564bc3cec3561f35064cd78b8845dc5051089 braney Tue Jul 26 15:21:21 2011 -0700 change "import tracks" button to "track hubs" button. Make disconnects in hgHubConnect return to myHubs tab diff --git src/hg/hgTables/mainPage.c src/hg/hgTables/mainPage.c index 64bffee..b4cb72d 100644 --- src/hg/hgTables/mainPage.c +++ src/hg/hgTables/mainPage.c @@ -632,31 +632,31 @@ nbSpaces(3); boolean hasCustomTracks = FALSE; struct trackDb *t; for (t = fullTrackList; t != NULL; t = t->next) { if (isCustomTrack(t->table)) { hasCustomTracks = TRUE; break; } } hOnClickButton("document.customTrackForm.submit();return false;", hasCustomTracks ? CT_MANAGE_BUTTON_LABEL : CT_ADD_BUTTON_LABEL); hPrintf(" "); - hOnClickButton("document.trackHubForm.submit();return false;", "import tracks"); + hOnClickButton("document.trackHubForm.submit();return false;", "track hubs"); hPrintf("</TD></TR>\n"); } /* Print table line. */ { hPrintf("<TR><TD>"); curTable = showTableField(curTrack, hgtaTable, TRUE); if (strchr(curTable, '.') == NULL) /* In same database */ { hti = getHti(database, curTable, conn); isPositional = htiIsPositional(hti); } isBam = isBamTable( curTable); isWig = isWiggle(database, curTable);