9af04e0e3c5af3663149d78b1bdb0581ff0654a5 max Tue Nov 18 07:37:22 2025 -0800 commit ae63ce55185746c5f was a mistake, happened right before the build and was not caught in code review. It includes mostly harmless changes, but one that affects the UI (I had taken back the CSS change before the build). Rather than reverting the entire commit now, I am keeping the patch minimal and only comment out a few javascript lines. refs #36726 diff --git src/hg/js/hgTracks.js src/hg/js/hgTracks.js index 8a8c57160ad..94699470721 100644 --- src/hg/js/hgTracks.js +++ src/hg/js/hgTracks.js @@ -2960,37 +2960,37 @@ if (displayItemFunctions) { o[rightClick.makeImgTag("magnify.png") + " Zoom to " + title] = { onclick: function(menuItemClicked, menuObject) { rightClick.hit(menuItemClicked, menuObject, "selectWholeGene"); return true; } }; o[rightClick.makeImgTag("highlight.png") + " Highlight " + title] = { onclick: function(menuItemClicked, menuObject) { rightClick.hit(menuItemClicked, menuObject, "highlightItem"); return true; } }; - o[rightClick.makeImgTag("highlight.png") + " Highlight THIS item"] = - { onclick: function(menuItemClicked, menuObject) { - rightClick.hit(menuItemClicked, menuObject, - "highlightThisItem"); - return true; - } - }; + //o[rightClick.makeImgTag("highlight.png") + " Highlight THIS item"] = + // { onclick: function(menuItemClicked, menuObject) { + // rightClick.hit(menuItemClicked, menuObject, + // "highlightThisItem"); + // return true; + // } + // }; if (rightClick.supportZoomCodon && (rec.type.indexOf("genePred") !== -1 || rec.type.indexOf("bigGenePred") !== -1)) { // http://hgwdev-larrym.gi.ucsc.edu/cgi-bin/hgGene?hgg_gene=uc003tqk.2&hgg_prot=P00533&hgg_chrom=chr7&hgg_start=55086724&hgg_end=55275030&hgg_type=knownGene&db=hg19&c=chr7 var name, table; var reg = new RegExp("hgg_gene=([^&]+)"); let a = reg.exec(href); if (a && a[1]) { name = a[1]; reg = new RegExp("hgg_type=([^&]+)"); a = reg.exec(href); if (a && a[1]) { table = a[1]; } } else { // http://hgwdev-larrym.gi.ucsc.edu/cgi-bin/hgc?o=55086724&t=55275031&g=refGene&i=NM_005228&c=chr7