ea1efa744d817bb2786b3fd0083124908a60ec10
braney
  Tue Aug 19 14:42:23 2025 -0700
fix mouseOvers for quickLift triangles.   Added hgc page for clicks on
it

diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c
index 56be3ec082f..96d8f5a1dbf 100644
--- src/hg/hgc/hgc.c
+++ src/hg/hgc/hgc.c
@@ -28048,30 +28048,34 @@
     }
 else if (tdb != NULL && 
         (startsWithWord("barChart", tdb->type) || startsWithWord("bigBarChart", tdb->type)))
     {
     doBarChartDetails(tdb, item);
     printTrackHtml(tdb);
     }
 else if (startsWith("hprcDeletions", table) || startsWith("hprcInserts", table) || startsWith("hprcArr", table)|| startsWith("hprcDouble", table))
     {
     doHPRCTable(tdb, item);
     }
 else if (tdb && sameString(tdb->type, "lorax"))
     {
     doLorax(tdb, item);
     }
+else if (sameString(trackHubSkipHubName(table), "quickLiftChain"))
+    {
+    doQuickLiftChain(tdb, item);
+    }
 else
     return FALSE;
 
 return TRUE;
 }
 
 struct hash *orgDbHash = NULL;
 
 void initOrgDbHash()
 /* Function to initialize a hash of organism names that hash to a database ID.
  * This is used to show alignments by hashing the organism associated with the
  * track to the database name where the chromInfo is stored. For example, the
  * mousBlat track in the human browser would hash to the mm2 database. */
 {
 orgDbHash = hashNew(8);