Skip to content

Instantly share code, notes, and snippets.

@axdemelas
Last active June 12, 2016 17:54
Show Gist options
  • Save axdemelas/4c122a564f7e0e463a79 to your computer and use it in GitHub Desktop.
Save axdemelas/4c122a564f7e0e463a79 to your computer and use it in GitHub Desktop.
Example of onstepper event
var stepperElement = document.querySelector('.mdl-stepper');
stepperElement.addEventListener('onsteppercomplete', function (event) {
// When all required steps are completed. Optional steps are ignored for dispatch this event.
// You can redirect or do anything else.
window.location.href = 'https://mysite.com';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment