From 321417c28b3b1d272a07fa0dbb0266a0c40d5d52 Mon Sep 17 00:00:00 2001 From: Joonghun Park Date: Thu, 20 Jun 2013 22:54:12 +0900 Subject: [PATCH 1/1] [Title] revise hardware backkey eventHandler to identify the event keyName "bac$ [issue#]N_SE-42328, N_SE-42377, N_SE-42385 [Problem] when menu key is clicked, the app act as if back key is clicked [solution] add the checking code of hardware backkey event's keyName attribute Change-Id: I0d31d80fea425c27318d29b9bdc1cfd4b6f67eaa --- js/main.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/main.js b/js/main.js index c805245..8d8ec34 100755 --- a/js/main.js +++ b/js/main.js @@ -22,8 +22,9 @@ function deviceOrientationEvents() { window.onload = function() { //add eventListener for tizenhwkey - document.addEventListener('tizenhwkey', function(e){ - tizen.application.getCurrentApplication().exit(); + document.addEventListener('tizenhwkey', function(e) { + if(e.keyName == "back") + tizen.application.getCurrentApplication().exit(); }); deviceOrientationEvents(); -- 2.7.4