Skip to content

Instantly share code, notes, and snippets.

@Dmuasya
Created December 7, 2022 03:54
Embed
What would you like to do?
$("#text-string").keyup(function() {
var a = canvas.getActiveObject();
if (a && a.type === 'text') {
a.text = this.value;
canvas.renderAll()
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment