From a4f21558b53fc187380e3deed91f742fc39461a2 Mon Sep 17 00:00:00 2001 From: Piotr Dabrowski Date: Fri, 4 Oct 2013 09:45:27 +0200 Subject: [PATCH] [CallLog] updated CallLog sources Change-Id: I4fafb4823d4f185f9479ebac74e785902b189ce1 --- js/app.ui.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/app.ui.js b/js/app.ui.js index 073572a..b612c3c 100644 --- a/js/app.ui.js +++ b/js/app.ui.js @@ -137,7 +137,10 @@ function Ui(contacts) { event.stopPropagation(); }); - $('#calllogList').on('click', '.call', function onCalllogEntryClick(event) { + $('#calllogList').on('click keypress', '.call', function onCalllogEntryClick(event) { + if (event.type === 'keypress' && event.keyCode !== 13) { + return; + } var remoteParty = $(this) .data('entries')[0] .remoteParties[0] -- 2.7.4