##// END OF EJS Templates
Merged r10836 from trunk (#12298)....
Jean-Philippe Lang -
r10644:c5f2dadb2cca
parent child
Show More
@@ -25,7 +25,7 function contextMenuClick(event) {
25 }
25 }
26 contextMenuHide();
26 contextMenuHide();
27 if (target.is('a') || target.is('img')) { return; }
27 if (target.is('a') || target.is('img')) { return; }
28 if (event.which == 1 /*TODO || (navigator.appVersion.match(/\bMSIE\b/))*/) {
28 if (event.which == 1 || (navigator.appVersion.match(/\bMSIE\b/))) {
29 var tr = target.parents('tr').first();
29 var tr = target.parents('tr').first();
30 if (tr.length && tr.hasClass('hascontextmenu')) {
30 if (tr.length && tr.hasClass('hascontextmenu')) {
31 // a row was clicked, check if the click was on checkbox
31 // a row was clicked, check if the click was on checkbox
General Comments 0
You need to be logged in to leave comments. Login now