Skip to content

Commit

Permalink
fix issue that evaluateJs does't work (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
holycanvas committed Nov 18, 2019
1 parent 542860b commit 8f1d590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/jsb-webview.js
Expand Up @@ -202,7 +202,7 @@
_p.evaluateJS = function (str) {
let iframe = this._iframe;
if (iframe) {
return iframe.evaluateJS();
return iframe.evaluateJS(str);
}
};
/**
Expand Down

0 comments on commit 8f1d590

Please sign in to comment.