Behavior TC Notification update api modify
authorChoi <choi@Choi.(none)>
Thu, 15 Aug 2013 06:20:59 +0000 (15:20 +0900)
committerFan,Yugang <yugang.fan@intel.com>
Thu, 15 Aug 2013 07:22:05 +0000 (15:22 +0800)
tests/Notification/js/main.js

index 2246a99..a45edd1 100644 (file)
@@ -150,12 +150,16 @@ function postNotification(type) {
     try {
         var noti = new tizen.StatusNotification(type, title, notiDict);
         tizen.notification.post(noti);
-        noti.progressValue = 63;
-        tizen.notification.update(noti);
         alert(type + " Notification Add");
+        setTimeout(update, 3000);
     } catch (exc) {
         alert("notification.post failed: " + exc.message);
     }
+
+    function update() {
+        noti.progressValue = 63;
+        tizen.notification.update(noti);
+    }
 }
 
 function fileURI() {