Skip to content

Commit

Permalink
Merge pull request #7 from pocketsmith/default-text-android
Browse files Browse the repository at this point in the history
Default loading text for Android, looks bare otherwise
  • Loading branch information
maknz committed Mar 16, 2016
2 parents 8aa81c2 + 470bd15 commit 1c2a9c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/progress-dialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class LoadingIndicator {
if (options.android.cancelable !== undefined) cancelable = options.android.cancelable;
}

this._progressDialog = android.app.ProgressDialog.show(context, "", options.message || "", indeterminate, cancelable);
this._progressDialog = android.app.ProgressDialog.show(context, "", options.message || "Loading", indeterminate, cancelable);
} else {
// options
if (options.message) this._progressDialog.setMesssage(options.message);
Expand Down

0 comments on commit 1c2a9c6

Please sign in to comment.