You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pp...@apache.org on 2013/05/17 16:22:19 UTC

[09/21] js commit: [Tizen, Tizen SDK 2.0 (Magnolia)] - Notification

[Tizen, Tizen SDK 2.0 (Magnolia)] - Notification

update


Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/17eef89a
Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/17eef89a
Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/17eef89a

Branch: refs/heads/master
Commit: 17eef89a7db4ed33f3fa9d9f3d175e920ee182f9
Parents: a7aaeee
Author: pplaquette <pp...@apache.org>
Authored: Thu Apr 18 13:33:38 2013 +0200
Committer: pplaquette <pp...@apache.org>
Committed: Fri Apr 19 11:07:14 2013 +0200

----------------------------------------------------------------------
 lib/tizen/plugin/tizen/Notification.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/17eef89a/lib/tizen/plugin/tizen/Notification.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/Notification.js b/lib/tizen/plugin/tizen/Notification.js
index b5c90c6..cda1ed0 100644
--- a/lib/tizen/plugin/tizen/Notification.js
+++ b/lib/tizen/plugin/tizen/Notification.js
@@ -124,7 +124,7 @@ module.exports = {
            element.addEventListener("click", createListener(element), false);
        }
     },
-    
+
     prompt: function (message, promptCallback, title, buttonLabels) {
         console.log ("message" , message);
         console.log ("confirmCallback" , promptCallback);
@@ -137,7 +137,7 @@ module.exports = {
         // ok is 1, cancel is 2
 
         var result = prompt(message);
-        
+
         if (promptCallback && (typeof promptCallback == "function")) {
             promptCallback((result === null) ? 2 : 1, result);
         }