Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Last active March 13, 2017 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/aaa616deccf119f39fb2fb3adc232660 to your computer and use it in GitHub Desktop.
Save bjoerntx/aaa616deccf119f39fb2fb3adc232660 to your computer and use it in GitHub Desktop.
// process received format options
function inputFormatChanged(id, value, stringValue) {
switch (id) {
// handle the "Bold" button
case TXTextControl.InputFormatProperty.Bold:
if (value == true)
$("#bold").prop("checked", true);
else
$("#bold").prop("checked", false);
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment