[Title] revise hardware backkey eventHandler to identify the event keyName "bac$
authorJoonghun Park <jh718.park@samsung.com>
Thu, 20 Jun 2013 13:51:44 +0000 (22:51 +0900)
committerJoonghun Park <jh718.park@samsung.com>
Fri, 21 Jun 2013 00:03:13 +0000 (09:03 +0900)
[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: I9848d9a2ba3d596bdf421569bc0b37d444d549ca

js/clock.js

index 7a63fbf..6386f8f 100755 (executable)
@@ -1,6 +1,7 @@
 //add eventListener for tizenhwkey\r
-document.addEventListener('tizenhwkey', function(e){\r
-    tizen.application.getCurrentApplication().exit();\r
+document.addEventListener('tizenhwkey', function(e) {\r
+    if(e.keyName == "back")\r
+        tizen.application.getCurrentApplication().exit();\r
 });\r
 \r
 setInterval(function () {\r