src/hg/hgTracks/hgTracks.c 1.1630
1.1630 2010/02/17 20:20:36 tdreszer
Larry pointed out tool tips that were wrong.
Index: src/hg/hgTracks/hgTracks.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTracks/hgTracks.c,v
retrieving revision 1.1629
retrieving revision 1.1630
diff -b -B -U 4 -r1.1629 -r1.1630
--- src/hg/hgTracks/hgTracks.c 17 Feb 2010 19:13:53 -0000 1.1629
+++ src/hg/hgTracks/hgTracks.c 17 Feb 2010 20:20:36 -0000 1.1630
@@ -4457,11 +4457,11 @@
#endif//def IMAGEv2_DRAG_SCROLL
hPrintf("<td width='20' align='left'><a href='?hgt.left1=1' title='move 10% to the left'><</a>\n");
hPrintf("<td> </td>\n"); // Without 'width=' this cell expand to table with, forcing other cells to the sides.
- hPrintf("<td width='80' align='left'><a href='?hgt.in3=1' title='zoom out 10x'>>>> <<<</a>\n");
- hPrintf("<td width='60' align='left'><a href='?hgt.in2=1' title='zoom out 3x'>>> <<</a>\n");
- hPrintf("<td width='40' align='left'><a href='?hgt.in1=1' title='zoom out 1.5x'>> <</a>\n");
+ hPrintf("<td width='80' align='left'><a href='?hgt.in3=1' title='zoom in 10x'>>>> <<<</a>\n");
+ hPrintf("<td width='60' align='left'><a href='?hgt.in2=1' title='zoom in 3x'>>> <<</a>\n");
+ hPrintf("<td width='40' align='left'><a href='?hgt.in1=1' title='zoom in 1.5x'>> <</a>\n");
hPrintf("<td width='40' align='left'><a href='?hgt.inBase=1' title='zoom in to base range'><i>base</i></a>\n");
hPrintf("<td> </td>\n"); // Without 'width=' this cell expand to table with, forcing other cells to the sides.
hPrintf("<td width='40' align='right'><a href='?hgt.out1=1' title='zoom out 1.5x'>< ></a>\n");
@@ -4496,11 +4496,11 @@
tl.picWidth, 27);
hPrintf("<TD COLSPAN=6 ALIGN=left NOWRAP>");
hPrintf("move start<BR>");
#ifdef USE_NAVIGATION_LINKS
- hPrintf("<a href='?hgt.dinkLL=1' title='dink left side to the left'><</a>\n");
+ hPrintf("<a href='?hgt.dinkLL=1' title='move window start position to the left'><</a>\n");
hTextVar("dinkL", cartUsualString(cart, "dinkL", "2.0"), 3);
- hPrintf("<a href='?hgt.dinkLR=1' title='dink left side to the right'>></a>\n");
+ hPrintf("<a href='?hgt.dinkLR=1' title='move window start position to the right'>></a>\n");
#else//ifndef USE_NAVIGATION_LINKS
hButton("hgt.dinkLL", " < ");
hTextVar("dinkL", cartUsualString(cart, "dinkL", "2.0"), 3);
hButton("hgt.dinkLR", " > ");
@@ -4524,11 +4524,11 @@
hPrintf("<td width='30'> </td>\n");
hPrintf("<TD COLSPAN=6 ALIGN=right NOWRAP>");
hPrintf("move end<BR>");
#ifdef USE_NAVIGATION_LINKS
- hPrintf("<a href='?hgt.dinkRL=1' title='dink right side to the left'><</a>\n");
+ hPrintf("<a href='?hgt.dinkRL=1' title='move window end position to the left'><</a>\n");
hTextVar("dinkR", cartUsualString(cart, "dinkR", "2.0"), 3);
- hPrintf("<a href='?hgt.dinkRR=1' title='dink right side to the right'>></a>\n");
+ hPrintf("<a href='?hgt.dinkRR=1' title='move window end position to the right'>></a>\n");
#else//ifndef USE_NAVIGATION_LINKS
hButton("hgt.dinkRL", " < ");
hTextVar("dinkR", cartUsualString(cart, "dinkR", "2.0"), 3);
hButton("hgt.dinkRR", " > ");