Finished #485 and worked out bugs: password fields always update, added margins, fixed Chrome width bug, wrapped checkbox in label element

This commit is contained in:
Jef van Schendel 2011-12-29 22:40:45 +01:00
parent 9f264942d8
commit dab1d70280
2 changed files with 10 additions and 1 deletions

View File

@ -251,6 +251,11 @@ textarea#comment_content {
text-align: right; text-align: right;
} }
#password_boolean {
margin-top: 4px;
width: 20px;
}
/* comments */ /* comments */
.comment_author { .comment_author {

View File

@ -22,7 +22,7 @@
{% block mediagoblin_head %} {% block mediagoblin_head %}
<script> <script>
$(document).ready(function(){ $(document).ready(function(){
$("#password").after('<input type="text" value="" name="password_clear" id="password_clear" /><input type="checkbox" id="password_boolean" />Show password'); $("#password").after('<input type="text" value="" name="password_clear" id="password_clear" /><label><input type="checkbox" id="password_boolean" />Show password</label>');
$('#password_clear').hide(); $('#password_clear').hide();
$('#password_boolean').click(function(){ $('#password_boolean').click(function(){
if($('#password_boolean').prop("checked")) { if($('#password_boolean').prop("checked")) {
@ -35,6 +35,10 @@
$('#password').show(); $('#password').show();
}; };
}); });
$('#password,#password_clear').keyup(function(){
$('#password').val($(this).val());
$('#password_clear').val($(this).val());
});
}); });
</script> </script>
{% endblock mediagoblin_head %} {% endblock mediagoblin_head %}