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/quickLift.c src/hg/hgc/quickLift.c new file mode 100644 index 00000000000..77a8558fe34 --- /dev/null +++ src/hg/hgc/quickLift.c @@ -0,0 +1,24 @@ +/* Details page for QuickLift track type */ + +/* Copyright (C) 2025 The Regents of the University of California + * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */ + +#include "common.h" +#include "cart.h" +#include "cheapcgi.h" +#include "hgc.h" +#include "jsHelper.h" +#include "htmshell.h" + +void doQuickLiftChain(struct trackDb *tdb, char *item) +/* Deal with click on quickLift chain track.*/ +{ +char title[256]; +safef(title, sizeof(title), "QuickLift Chain Details"); +char header[256]; +safef(header, sizeof(header), "%s %s", title, item); +cartWebStart(cart, database, "%s", header); +printf("doQuickLift\n"); +htmlHorizontalLine(); +printTrackHtml(tdb); +}