File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
java/tech/easily/easybridge/lib Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 110
110
111
111
} ;
112
112
//notify to native that the bridge had been injected finished
113
- window [ bridgeName ] . callHandler ( 'rejectFinished ' ) ;
113
+ window [ bridgeName ] . callHandler ( 'injectFinished ' ) ;
114
114
//notify to javascript that the bridge had been init
115
115
var doc = document ;
116
116
var readyEvent = doc . createEvent ( 'Events' ) ;
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public class EasyBridgeWebView extends WebView {
37
37
private static final String JAVA_SCRIPT_PROTOCOL = "javascript:" ;
38
38
static final String MAPPING_JS_INTERFACE_NAME = "_easybridge" ;
39
39
private static final String DEFAULT_BRIDGE_NAME = "easyBridge" ;
40
- private static final String REGISTER_INJECT_FINISHED = "rejectFinished " ;
40
+ private static final String REGISTER_INJECT_FINISHED = "injectFinished " ;
41
41
private final EasyBridge easyBridge ;
42
42
private String bridgeName = DEFAULT_BRIDGE_NAME ;
43
43
protected SecurityPolicyChecker policyChecker ;
You can’t perform that action at this time.
0 commit comments