src/hg/lib/hui.c 1.242
1.242 2009/10/21 15:51:47 tdreszer
Remove hintOverSortableColumnHeader which does nothing
Index: src/hg/lib/hui.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/hui.c,v
retrieving revision 1.241
retrieving revision 1.242
diff -b -B -U 4 -r1.241 -r1.242
--- src/hg/lib/hui.c 20 Oct 2009 23:23:44 -0000 1.241
+++ src/hg/lib/hui.c 21 Oct 2009 15:51:47 -0000 1.242
@@ -3073,9 +3073,9 @@
// Columns in tdb order (unchanging), sort in cart order (changed by user action)
int sIx=0;
for(sIx=0;sIx<sortOrder->count;sIx++)
{
- printf ("<TH id='%s.%s.sortTh' abbr='%c' onMouseOver=\"hintOverSortableColumnHeader(this)\" nowrap><A HREF='#nowhere' onclick=\"tableSortAtButtonPress(this,'%s');return false;\">%s</A><sup>%s",
+ printf ("<TH id='%s.%s.sortTh' abbr='%c' nowrap><A HREF='#nowhere' onclick=\"tableSortAtButtonPress(this,'%s');return false;\">%s</A><sup>%s",
parentTdb->tableName,sortOrder->column[sIx],(sortOrder->forward[sIx]?'-':'+'),sortOrder->column[sIx],sortOrder->title[sIx],(sortOrder->forward[sIx]?"↓":"↑"));
if (sortOrder->count > 1)
printf ("%d",sortOrder->order[sIx]);
puts ("</sup></TH>");