From af785350b3dec0577a893ab4d0bd5e320046569c Mon Sep 17 00:00:00 2001 From: coderaiser Date: Sun, 23 Dec 2012 14:45:28 +0200 Subject: [PATCH] removed e.stopPropagation call in keyStop function Hi, first of all I want thank you for good library :). I am using it in my application and sometime I need to check is Esc-button presed and do some processing. But becaouse of stopPropagation function I could not to know about it. Is it realy necessary? Can we just drop it? Or exclude in some situations? --- src/jquery.contextMenu.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/jquery.contextMenu.js b/src/jquery.contextMenu.js index 08433479..912ee0cd 100755 --- a/src/jquery.contextMenu.js +++ b/src/jquery.contextMenu.js @@ -426,8 +426,6 @@ var // currently active contextMenu trigger if (!opt.isInput) { e.preventDefault(); } - - e.stopPropagation(); }, key: function(e) { var opt = $currentTrigger.data('contextMenu') || {},