From a9d23eaaf75c162e93e3af792069e0164b7cad47 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 24 Dec 2012 15:36:59 +0200 Subject: [PATCH] Exported all internal event handlers Exported all internal event handlers to allow access the otherwise opaque handlers from the outside: ``` $.contextMenu.handle.keyStop = $.noop; ``` --- src/jquery.contextMenu.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/jquery.contextMenu.js b/src/jquery.contextMenu.js index 08433479..9d03f0e6 100755 --- a/src/jquery.contextMenu.js +++ b/src/jquery.contextMenu.js @@ -1581,5 +1581,6 @@ $.contextMenu.fromMenu = function(element) { // make defaults accessible $.contextMenu.defaults = defaults; $.contextMenu.types = types; +$.contextMenu.handle = handle; })(jQuery);