Skip to content

Instantly share code, notes, and snippets.

@DaveVoyles
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save DaveVoyles/420f6033cb6a24373a6d to your computer and use it in GitHub Desktop.

Select an option

Save DaveVoyles/420f6033cb6a24373a6d to your computer and use it in GitHub Desktop.
form.addEventListener('submit', function (e) { window.pokemonApp.sayTheName(e) });
// Say the text when button is pressed
pokemonApp.sayTheName = function (e) {
e.preventDefault();
playerElement.speak();
console.log(radialButtons.intValue);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment