Created
April 18, 2018 13:04
-
-
Save matryer/9f31883c6a6ec8cb53551f7b371ac111 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
| var choicesEl = document.getElementById('choices') | |
| for (var choice in response.choices) { | |
| var choice = response.choices[choice] | |
| // keep track of this reward ID | |
| rewardIDs[choice.id] = choice.reward_id | |
| var choiceEl = document.getElementById('choice-'+choice.id) | |
| choicesEl.appendChild(choiceEl) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment