Last active
June 12, 2016 17:54
-
-
Save axdemelas/4c122a564f7e0e463a79 to your computer and use it in GitHub Desktop.
Example of onstepper event
This file contains 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 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