(code: string)
| 78 | } |
| 79 | |
| 80 | public executeJavascript(code: string) { |
| 81 | const proxyFunc = Function("window", `"use strict";\n${code}`); |
| 82 | try { |
| 83 | proxyFunc?.bind(this.proxyWindow)(this.proxyWindow); |
| 84 | } catch (err) { |
| 85 | console.error("Plugin HTML card Error:\n", err); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | public destroy() { |
| 90 | this.fakeWindow.$destroySandbox(); |