Selaa lähdekoodia

Update WebView.android.tsx

Remove checking of startUrl === curentUrl
Jason Foo 4 vuotta sitten
vanhempi
commit
99d5f4fe90
No account linked to committer's email address
1 muutettua tiedostoa jossa 3 lisäystä ja 5 poistoa
  1. 3
    5
      src/WebView.android.tsx

+ 3
- 5
src/WebView.android.tsx Näytä tiedosto

@@ -237,11 +237,9 @@ class WebView extends React.Component<AndroidWebViewProps, State> {
237 237
     if (onLoadEnd) {
238 238
       onLoadEnd(event);
239 239
     }
240
-    if (url === this.startUrl) {
241
-      this.setState({
242
-        viewState: 'IDLE',
243
-      });
244
-    }
240
+    this.setState({
241
+      viewState: 'IDLE',
242
+    });
245 243
     this.updateNavigationState(event);
246 244
   };
247 245