df9e09f635d122d0247e6a60dea6d5f0a4ac21b4
max
  Mon Oct 14 05:17:47 2024 -0700
changes after code review, refs #34582

diff --git src/hg/inc/hui.h src/hg/inc/hui.h
index 3521bcd..43cb47a 100644
--- src/hg/inc/hui.h
+++ src/hg/inc/hui.h
@@ -1560,30 +1560,33 @@
 
 void printDataVersion(char *database, struct trackDb *tdb);
 /* If this annotation has a dataVersion setting, print it.
  * check hgFixed.trackVersion, meta data and trackDb 'dataVersion'. */
 
 void labelMakeCheckBox(struct cart *cart, struct trackDb *tdb, char *sym, char *desc,
                        boolean defaultOn);
 /* add a checkbox for the user to select a component of a label (e.g. ID, name, other info).
  * NOTE: This does not have a track name argument, so the correct tdb must be passed in:
  * if setting is at composite level, then pass in composite tdb, likewise for view. */
 
 int defaultFieldLocation(char *field);
 /* Sometimes we get bigBed filters with field names that are not in the AS file.  
  * Try to guess what the user means. */
 
+void printInfoIconSvg();
+/* Print just info icon (i) as svg to stdout */
+
 void printInfoIcon(char *mouseover);
 /* Print info icon (i) with explanatory text on mouseover
  * Uses jquery icon set, with style customized to GB in jquery-ui.css */
 
 void printRelatedTracks(char *database, struct hash *trackHash, struct trackDb *tdb, struct cart *cart);
 /* Maybe print a "related track" section */
 
 struct trackDb *snp125FetchGeneTracks(char *database, struct cart *cart);
 /* Get a list of genePred tracks. */
 
 struct trackDb *tdbOrAncestorByName(struct trackDb *tdb, char *name);
 /* For reasons Angie cannot fathom, if a composite or view is passed to cfgByCfgType then
  * cfgByCfgType passes a leaf subtrack to its callees like bigDbSnpCfgUi.  That is why we
  * see so many calls to isNameAtParentLevel, which returns true if the tdb was originally
  * at the composite or view level, which we can only tell by comparing with the original track name.