File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
raveandroid/src/main/java/com/flutterwave/raveandroid Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public class WebFragment extends Fragment {
2424 public static final String EXTRA_AUTH_URL = "authUrl" ;
2525 String authurl ;
2626 WebView webView ;
27- ProgressDialog progessDialog ;
27+ ProgressDialog progressDialog ;
2828
2929
3030 public WebFragment () {
@@ -118,16 +118,16 @@ public void showProgressIndicator(boolean active) {
118118 return ;
119119 }
120120
121- if (progessDialog == null ) {
122- progessDialog = new ProgressDialog (getActivity ());
123- progessDialog .setCanceledOnTouchOutside (false );
124- progessDialog .setMessage ("Please wait..." );
121+ if (progressDialog == null ) {
122+ progressDialog = new ProgressDialog (getActivity ());
123+ progressDialog .setCanceledOnTouchOutside (false );
124+ progressDialog .setMessage ("Please wait..." );
125125 }
126126
127- if (active && !progessDialog .isShowing ()) {
128- progessDialog .show ();
127+ if (active && !progressDialog .isShowing ()) {
128+ progressDialog .show ();
129129 } else {
130- progessDialog .dismiss ();
130+ progressDialog .dismiss ();
131131 }
132132 }
133133 catch (NullPointerException e ) {
You can’t perform that action at this time.
0 commit comments