Skip to content
Snippets Groups Projects
Commit 3cce950a authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

hook up the cancel button in the required email screen (case 1)

parent c15e15f9
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,6 @@
function verifyAddress(event) {
event.preventDefault();
}
function forgotPassword(event) {
......@@ -121,6 +120,9 @@
dom.bindEvent("#sign_in", "click", signIn.bind(self));
dom.bindEvent("#verify_address", "click", verifyAddress.bind(self));
dom.bindEvent("#forgotPassword", "click", forgotPassword.bind(self));
dom.bindEvent("#cancel_stage", "click", function() {
self.stop();
});
}
self._super();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment