From 4a07326be14ee473dae13f73b5c6ba194b9326a3 Mon Sep 17 00:00:00 2001 From: Jaco Pretorius Date: Tue, 27 Jan 2015 10:11:20 -0500 Subject: [PATCH] Prevent propagation of the click event on menu items --- src/mentio.directive.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mentio.directive.js b/src/mentio.directive.js index 6d3c421..d6faeae 100644 --- a/src/mentio.directive.js +++ b/src/mentio.directive.js @@ -609,6 +609,7 @@ angular.module('mentio', []) element.bind('click', function (e) { e.preventDefault(); controller.selectItem(scope.item); + return false; }); } };