Skip to content
Snippets Groups Projects
Commit b708e2a7 authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

Giving the "new email address" field a label. Made the transition to show the...

Giving the "new email address" field a label.  Made the transition to show the new email address field smoother.
parent 8f815b00
No related branches found
No related tags found
No related merge requests found
......@@ -70,9 +70,10 @@
"#useDifferentEmail click": function() {
//this.close("pickemail:addemail");
$("#signInButton").hide();
$("#differentEmail").slideDown(300);
$("#newEmail").focus();
$("#signInButton,#useDifferentEmail").fadeOut(250, function() {
$("#differentEmail").fadeIn(250);
$("#newEmail").focus();
});
}
});
......
......@@ -29,7 +29,8 @@
<div class="add cf">
<a id="useDifferentEmail" href="#">Use a different email</a>
<div id="differentEmail" class="cf">
<input id="newEmail" type="email"/>
<label for="newEmail">New email address</label>
<input id="newEmail" name="newEmail" type="email"/>
<button id="addDifferentEmail">Add</button>
</div>
</div>
......
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