fdb57480a9bf1e3a56a8d227a4adb6d1b3210902 tdreszer Wed Nov 23 13:03:40 2011 -0800 At this point, IE can't handle the matrix hover highlite. diff --git src/hg/js/hui.js src/hg/js/hui.js index 28fdbf8..be97fe7 100644 --- src/hg/js/hui.js +++ src/hg/js/hui.js @@ -1297,30 +1297,31 @@ $('.matCell').hover( function (e) {mat.cellHover(this,true)}, function (e) {mat.cellHover(this,false)} ); $(mat.matrix).blur(mat.clearGhostHilites()); $(window).bind('focus',function (e) {mat.clearGhostHilites();}); // blur doesn't work because the screen isn't repainted } } } } } // The following js depends upon the jQuery library $(document).ready(function() { + if (!$.browser.msie) // IE can't handle the hover mat.init(); // Initialize sortable tables $('table.sortable').each(function (ix) { sortTableInitialize(this,true,true); }); // Register tables with drag and drop $("table.tableWithDragAndDrop").each(function (ix) { tableDragAndDropRegister(this); }); $('.halfVis').css('opacity', '0.5'); // The 1/2 opacity just doesn't get set from cgi! $('.filterComp').each( function(i) { // Do this by 'each' to set noneIsAll individually