CC-3330: Regression in library behavior: left click anywhere in a row should bring up menu, right click anywhere in row should bring up metadata

-fixed
This commit is contained in:
denise 2012-04-19 18:23:30 -04:00
parent 710389a416
commit 636c40eb11
1 changed files with 7 additions and 0 deletions

View File

@ -306,6 +306,13 @@ var // currently active contextMenu trigger
e.stopImmediatePropagation();
$this.remove();
root.$menu.trigger('contextmenu:hide');
/* (Airtime) added this to allow user to exit out of menu
* if ignoreThisClick remains false, every right click
* thereafter continues to show the menu
*/
if (e.button == 2) {
ignoreThisClick = true;
}
},
// key handled :hover
keyStop: function(e, opt) {