http://git-wip-us.apache.org/repos/asf/incubator-cordova-tizen/blob/d0c4b247/js/cordova.tizen.js ---------------------------------------------------------------------- diff --git a/js/cordova.tizen.js b/js/cordova.tizen.js index 41e600b..c4c0819 100644 --- a/js/cordova.tizen.js +++ b/js/cordova.tizen.js @@ -1,6 +1,6 @@ -// commit 337b1f443491f3fdb816dc32f70e5378e0e1967c +// commit 884cb0e8f4809b6182b41101c092eee1139f82da -// File generated at :: Mon Oct 15 2012 17:23:41 GMT-0700 (PDT) +// File generated at :: Wed Oct 24 2012 12:54:26 GMT-0700 (PDT) /* Licensed to the Apache Software Foundation (ASF) under one @@ -695,7 +695,6 @@ module.exports = { return ( CommandProxyMap[service] ? CommandProxyMap[service][action] : null ); } }; - }); // file: lib/common/common.js @@ -6561,7 +6560,7 @@ function Device() { this.version = null; this.uuid = null; this.name = null; - this.cordova = "2.2.0rc1"; + this.cordova = "2.2.0rc2"; this.platform = "Tizen"; var me = this; @@ -7703,8 +7702,8 @@ utils.extend = (function() { * Alerts a message in any available way: alert or console.log. */ utils.alert = function(msg) { - if (alert) { - alert(msg); + if (window.alert) { + window.alert(msg); } else if (console && console.log) { console.log(msg); }