File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -282,23 +282,23 @@ var WebViewBridge = React.createClass({
282
282
283
283
goForward : function ( ) {
284
284
UIManager . dispatchViewManagerCommand (
285
- this . getWebViewHandle ( ) ,
285
+ this . getWebViewBridgeHandle ( ) ,
286
286
UIManager . RCTWebViewBridge . Commands . goForward ,
287
287
null
288
288
) ;
289
289
} ,
290
290
291
291
goBack : function ( ) {
292
292
UIManager . dispatchViewManagerCommand (
293
- this . getWebViewHandle ( ) ,
293
+ this . getWebViewBridgeHandle ( ) ,
294
294
UIManager . RCTWebViewBridge . Commands . goBack ,
295
295
null
296
296
) ;
297
297
} ,
298
298
299
299
reload : function ( ) {
300
300
UIManager . dispatchViewManagerCommand (
301
- this . getWebViewHandle ( ) ,
301
+ this . getWebViewBridgeHandle ( ) ,
302
302
UIManager . RCTWebViewBridge . Commands . reload ,
303
303
null
304
304
) ;
@@ -318,7 +318,7 @@ var WebViewBridge = React.createClass({
318
318
}
319
319
} ,
320
320
321
- getWebViewHandle : function ( ) : any {
321
+ getWebViewBridgeHandle : function ( ) : any {
322
322
return React . findNodeHandle ( this . refs [ RCT_WEBVIEWBRIDGE_REF ] ) ;
323
323
} ,
324
324
You can’t perform that action at this time.
0 commit comments