Skip to content

Instantly share code, notes, and snippets.

@GirlBossRush
Created October 1, 2013 02:48
Show Gist options
  • Save GirlBossRush/6773248 to your computer and use it in GitHub Desktop.
Save GirlBossRush/6773248 to your computer and use it in GitHub Desktop.
if (!choice.correct && choice.content.alt.text) {
          altText.text(choice.content.alt.text).show();
        } else if (choice.correct && typeof choice.content != 'undefined' && typeof choice.content.text != 'undefined' && null != choice.content.text && choice.content.text.length > 0) {
          altText.text(choice.content.text).show();
        } else {
          altText.hide();
        }
if (!choice.correct) {
if (choice.content.alt.text) {
altText.text(choice.content.alt.text).show();
}
else if (choice.content && choice.content.text && choice.content.text.length > 0) {
altText.text(choice.content.text).show();
}
else {
altText.hide();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment