In line 613 of jquery.contextMenu.js, ``` if (typeof opt.$selected !== 'undefined') { opt.$selected.trigger(e); } ``` If opt.$selected is null, this will fail and stop propagation. It should compare against null as well.