45ad3b560f9084749cfd2619035b6ed4e0f56c63 max Fri Mar 31 16:29:21 2017 -0700 fixing refs #19170 diff --git src/hg/js/hgTracks.js src/hg/js/hgTracks.js index 5886fd9..3e2c491 100644 --- src/hg/js/hgTracks.js +++ src/hg/js/hgTracks.js @@ -3309,31 +3309,31 @@ $('#hgTracksDialog').dialog('open'); } }; // A function to show the keyboard help dialog box, bound to ? and called from the menu bar function showHotkeyHelp() { $("#hotkeyHelp").dialog({width:'600'}); } // A function to add an entry for the keyboard help dialog box to the menubar // and add text that indicates the shortcuts to many static menubar items as suggested by good old IBM CUA/SAA function addKeyboardHelpEntries() { var html = '
  • Keyboard Shortcuts?
  • '; $('#help .last').before(html); - $("#keybShorts").onclick = function(){showHotKeyHelp(); return false;}; + $("#keybShorts").click( function(){showHotkeyHelp();} ); html = 's s'; $('#sessionsMenuLink').after(html); html = 'p s'; $('#publicSessionsMenuLink').after(html); html = 'c t'; $('#customTracksMenuLink').after(html); html = 't h'; $('#trackHubsMenuLink').after(html); html = 't b'; $('#blatMenuLink').after(html);