mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-03 01:50:59 +08:00
19 lines
359 B
JavaScript
19 lines
359 B
JavaScript
var text = $("#textbox-input").val();
|
|
|
|
|
|
|
|
$('#clear-button').click(function(e){
|
|
document.getElementById("textbox-input").value="";
|
|
})
|
|
|
|
|
|
$('#submit-button').click(function(e){
|
|
// var dataURL = canvas.toDataURL("image/png");
|
|
var text = $("#textbox-input").val();
|
|
console.log(text);
|
|
ws.send(text, function(e){
|
|
notifyError(e)
|
|
});
|
|
|
|
})
|