Starting incrementing the tag to RC2

This commit is contained in:
Joe Bowser 2012-10-24 12:06:00 -07:00
parent 5f1cda07e7
commit bef0d47924
4 changed files with 7 additions and 8 deletions

View File

@ -1 +1 @@
2.2.0rc1 2.2.0rc2

View File

@ -33,7 +33,7 @@
<p class="event received">Device is Ready</p> <p class="event received">Device is Ready</p>
</div> </div>
</div> </div>
<script type="text/javascript" src="cordova-2.2.0rc1.js"></script> <script type="text/javascript" src="cordova-2.2.0rc2.js"></script>
<script type="text/javascript" src="js/index.js"></script> <script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript"> <script type="text/javascript">
app.initialize(); app.initialize();

View File

@ -1,6 +1,6 @@
// commit 98d190ad98ec48f4f06c61286faee99c0eb000ed // commit 884cb0e8f4809b6182b41101c092eee1139f82da
// File generated at :: Mon Oct 15 2012 13:22:37 GMT-0700 (PDT) // File generated at :: Wed Oct 24 2012 11:51:57 GMT-0700 (PDT)
/* /*
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
@ -695,7 +695,6 @@ module.exports = {
return ( CommandProxyMap[service] ? CommandProxyMap[service][action] : null ); return ( CommandProxyMap[service] ? CommandProxyMap[service][action] : null );
} }
}; };
}); });
// file: lib/common/common.js // file: lib/common/common.js
@ -6322,8 +6321,8 @@ utils.extend = (function() {
* Alerts a message in any available way: alert or console.log. * Alerts a message in any available way: alert or console.log.
*/ */
utils.alert = function(msg) { utils.alert = function(msg) {
if (alert) { if (window.alert) {
alert(msg); window.alert(msg);
} else if (console && console.log) { } else if (console && console.log) {
console.log(msg); console.log(msg);
} }

View File

@ -39,7 +39,7 @@ import android.telephony.TelephonyManager;
public class Device extends CordovaPlugin { public class Device extends CordovaPlugin {
public static final String TAG = "Device"; public static final String TAG = "Device";
public static String cordovaVersion = "2.2.0rc1"; // Cordova version public static String cordovaVersion = "2.2.0rc2"; // Cordova version
public static String platform = "Android"; // Device OS public static String platform = "Android"; // Device OS
public static String uuid; // Device UUID public static String uuid; // Device UUID