Skip to content

Commit

Permalink
feat: change bridge method invokeMethod to invoke
Browse files Browse the repository at this point in the history
  • Loading branch information
tishion authored Dec 11, 2024
1 parent 5686b8f commit 1b45d16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/QCefViewTest/index.in.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
}

function onInvokeMethodClicked(name, ...arg) {
CallBridge.invokeMethod(name, ...arg);
CallBridge.invoke(name, ...arg);
}

function onCallBridgeQueryClicked() {
Expand Down
2 changes: 1 addition & 1 deletion example/QCefViewTest/tutorial.in.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}

function onInvokeMethodClicked(name, ...arg) {
CallBridge.invokeMethod(name, ...arg);
CallBridge.invoke(name, ...arg);
}

function onCallBridgeQueryClicked() {
Expand Down

0 comments on commit 1b45d16

Please sign in to comment.