352dd9fff84141df74278f4ba2988a1070ae50c8 larrym Mon Oct 11 14:37:59 2010 -0700 minor comment diff --git src/hg/js/jquery.contextmenu.js src/hg/js/jquery.contextmenu.js index 5809991..0bf842b 100644 --- src/hg/js/jquery.contextmenu.js +++ src/hg/js/jquery.contextmenu.js @@ -222,6 +222,7 @@ $(document).one('click',null,function(){cmenu.hide()}); // Handle a single click to the document to hide the menu $(document).one('keyup', null, function(event){ // hide menu when user presses the escape key + // XXXX This doesn't work on the Mac (we never get any keyup events). if (event.keyCode == 27) { cmenu.hide(); }