Skip to content
Snippets Groups Projects
Commit 082d1672 authored by Sean McArthur's avatar Sean McArthur
Browse files

Merge pull request #2199 from mozilla/issue_2106_2113_tooltips

Move tooltips to where they are less obtrusive.
parents eafc9bd1 82f5e9dc
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,10 @@
<div id="could_not_add" class="tooltip" for="email">
<%= gettext('We just sent an email to that address! If you really want to send another, wait a minute or two and try again.') %>
</div>
<div id="cannot_authenticate" class="tooltip" for="email">
<%= gettext('This email address and password do not match.') %>
</div>
</li>
......@@ -42,9 +46,6 @@
<%= gettext('The password field is required.') %>
</div>
<div id="cannot_authenticate" class="tooltip" for="password">
<%= gettext('This email address and password do not match.') %>
</div>
</li>
</ul>
......
......@@ -35,6 +35,10 @@
<div id="could_not_add" class="tooltip" for="password">
<%= gettext('We just sent an email to that address! If you really want to send another, wait a minute or two and try again.') %>
</div>
<div class="tooltip" id="passwords_no_match" for="password">
<%= gettext('These passwords don\'t match!') %>
</div>
</li>
<li>
......@@ -45,9 +49,6 @@
<%= gettext('Verification password is required.') %>
</div>
<div class="tooltip" id="passwords_no_match" for="vpassword">
<%= gettext('These passwords don\'t match!') %>
</div>
</li>
</ul>
......
......@@ -39,6 +39,11 @@
<%- gettext('We just sent an email to that address! If you really want to send another, wait a minute or two and try again.') %>
</div>
<div id="cannot_authenticate" class="tooltip" for="email">
<%- gettext('This email address and password do not match.') %>
</div>
</li>
<li class="password_entry vpassword_entry">
......@@ -51,14 +56,13 @@
<%- gettext('The password field is required.') %>
</div>
<div id="cannot_authenticate" class="tooltip" for="password">
<%- gettext('This email address and password do not match.') %>
</div>
<div class="tooltip" id="password_length" for="password">
<%- gettext('Password must be between 8 and 80 characters long.') %>
</div>
<div class="tooltip" id="passwords_no_match" for="password">
<%- gettext('These passwords don\'t match!') %>
</div>
</li>
<li class="vpassword_entry">
......@@ -69,9 +73,6 @@
<%- gettext('Verification password is required.') %>
</div>
<div class="tooltip" id="passwords_no_match" for="vpassword">
<%- gettext('These passwords don\'t match!') %>
</div>
</li>
</ul>
......
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