mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 22:25:30 +08:00
17 lines
645 B
JavaScript
17 lines
645 B
JavaScript
$(document).on('turbolinks:load', function() {
|
|
$.each($('input[type="password"]'), function(i, e) {
|
|
$('<i class="fas fa-eye show-password" style="cursor: pointer; z-index: 10"></i>').insertAfter(e);
|
|
$(e).parent().addClass('right-icon');
|
|
});
|
|
});
|
|
|
|
$(document).on('click', '.show-password', function() {
|
|
let $icon = $(this);
|
|
if ($icon.hasClass('fa-eye')) {
|
|
$icon.removeClass('fa-eye').addClass('fa-eye-slash');
|
|
$icon.parent().find('input[type=password]').attr('type', 'text');
|
|
} else {
|
|
$icon.removeClass('fa-eye-slash').addClass('fa-eye');
|
|
$icon.parent().find('input[type=text]').attr('type', 'password');
|
|
}
|
|
});
|