Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created April 1, 2024 17:41
Show Gist options
  • Save bjoerntx/920e33fa795b513d8821d6ec3d145cc5 to your computer and use it in GitHub Desktop.
Save bjoerntx/920e33fa795b513d8821d6ec3d145cc5 to your computer and use it in GitHub Desktop.
async function insertComment(comment) {
return new Promise((resolve, reject) => {
TXTextControl.comments.add(comment, (e) => {
e.comment.getComment((comment) => {
resolve(comment);
});
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment