|
@@ -73,6 +73,7 @@ class WebView extends React.Component<AndroidWebViewProps, State> {
|
73
|
73
|
UIManager.dispatchViewManagerCommand(
|
74
|
74
|
this.getWebViewHandle(),
|
75
|
75
|
this.getCommands().goForward,
|
|
76
|
+ undefined
|
76
|
77
|
);
|
77
|
78
|
};
|
78
|
79
|
|
|
@@ -80,6 +81,7 @@ class WebView extends React.Component<AndroidWebViewProps, State> {
|
80
|
81
|
UIManager.dispatchViewManagerCommand(
|
81
|
82
|
this.getWebViewHandle(),
|
82
|
83
|
this.getCommands().goBack,
|
|
84
|
+ undefined
|
83
|
85
|
);
|
84
|
86
|
};
|
85
|
87
|
|
|
@@ -90,6 +92,7 @@ class WebView extends React.Component<AndroidWebViewProps, State> {
|
90
|
92
|
UIManager.dispatchViewManagerCommand(
|
91
|
93
|
this.getWebViewHandle(),
|
92
|
94
|
this.getCommands().reload,
|
|
95
|
+ undefined
|
93
|
96
|
);
|
94
|
97
|
};
|
95
|
98
|
|
|
@@ -97,6 +100,7 @@ class WebView extends React.Component<AndroidWebViewProps, State> {
|
97
|
100
|
UIManager.dispatchViewManagerCommand(
|
98
|
101
|
this.getWebViewHandle(),
|
99
|
102
|
this.getCommands().stopLoading,
|
|
103
|
+ undefined
|
100
|
104
|
);
|
101
|
105
|
};
|
102
|
106
|
|
|
@@ -104,6 +108,7 @@ class WebView extends React.Component<AndroidWebViewProps, State> {
|
104
|
108
|
UIManager.dispatchViewManagerCommand(
|
105
|
109
|
this.getWebViewHandle(),
|
106
|
110
|
this.getCommands().requestFocus,
|
|
111
|
+ undefined
|
107
|
112
|
);
|
108
|
113
|
};
|
109
|
114
|
|