From a086b4e254081e1749a7dcd54dd6218f310a2d81 Mon Sep 17 00:00:00 2001 From: "a. bellenir" Date: Tue, 7 Aug 2018 18:46:50 -0400 Subject: [PATCH] fix comment Signed-off-by: a. bellenir --- Open-ILS/web/js/ui/default/staff/services/grid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/services/grid.js b/Open-ILS/web/js/ui/default/staff/services/grid.js index 9dcdc5fb38..3f7aba30d4 100644 --- a/Open-ILS/web/js/ui/default/staff/services/grid.js +++ b/Open-ILS/web/js/ui/default/staff/services/grid.js @@ -684,7 +684,7 @@ angular.module('egGridMod', // we need the the row that got right-clicked... var e = $event.target; // the DOM element var s = undefined; // the angular scope for that element - while(e){ // searching for the row so we can get its index from s.$index + while(e){ // searching for the row // abort & use the browser default context menu for links (lp1669856): if(e.tagName.toLowerCase() === 'a' && e.href){ return true; } s = angular.element(e).scope(); -- 2.11.0