Created
October 1, 2013 02:48
-
-
Save GirlBossRush/6773248 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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