Skip to content

Commit

Permalink
Show context menu on right click in process explorer, #48498
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachel Macfarlane committed Apr 26, 2018
1 parent ebf9c8c commit 741e7e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export function startup(data: ProcessExplorerData): void {
const tableRows = document.getElementsByTagName('tr');
for (let i = 0; i < tableRows.length; i++) {
const tableRow = tableRows[i];
tableRow.addEventListener('click', (e) => {
tableRow.addEventListener('contextmenu', (e) => {
showContextMenu(e);
});
}
Expand Down

0 comments on commit 741e7e4

Please sign in to comment.