(target)
| 326 | // Simulate an `input` DOM event for Gradio Textbox component. Needed after you edit its contents in javascript, otherwise your edits |
| 327 | // will only visible on web page and not sent to python. |
| 328 | function updateInput(target) { |
| 329 | let e = new Event("input", {bubbles: true}); |
| 330 | Object.defineProperty(e, "target", {value: target}); |
| 331 | target.dispatchEvent(e); |
| 332 | } |
| 333 | |
| 334 | |
| 335 | var desiredCheckpointName = null; |
no outgoing calls
no test coverage detected