Skip to content
Snippets Groups Projects
Commit 957e7e65 authored by Moritz Strohm's avatar Moritz Strohm Committed by Michaela Brückner
Browse files

Apply 4 suggestion(s) to 1 file(s)

parent 2d9415db
No related branches found
No related tags found
No related merge requests found
......@@ -392,7 +392,7 @@ STUDIP.ready(function () {
}
else {
window.capsLockEnabled = false;
$('#password_caps').hide();
jQuery('#password_caps').hide();
}
}
......@@ -402,7 +402,7 @@ STUDIP.ready(function () {
}
where.find('input,select').each(function () {
if (this.type != "hidden") {
$(this).keypress(check_capslock);
jQuery(this).keypress(check_capslock);
}
});
}
......@@ -411,12 +411,12 @@ STUDIP.ready(function () {
$(document).on('click', '#password_toggle', function () {
if (password.attr("type") == "password") {
password.attr("type", "text");
$('#visible-password').hide();
$('#invisible-password').show();
jQuery('#visible-password').hide();
jQuery('#invisible-password').show();
} else {
password.attr("type", "password");
$('#visible-password').show();
$('#invisible-password').hide();
jQuery('#visible-password').show();
jQuery('#invisible-password').hide();
}
});
});
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