Fix bug with showing loadingDialog property.

This commit is contained in:
Bryce Curtis 2011-11-15 23:06:29 -06:00
parent bfef72a7c4
commit a6db1112c6

View File

@ -424,7 +424,7 @@ public class DroidGap extends PhonegapActivity {
// If loadingDialog property, then show the App loading dialog for first page of app
String loading = null;
if (me.urls.size() == 0) {
if (me.urls.size() == 1) {
loading = me.getStringProperty("loadingDialog", null);
}
else {