Files
clinic/loginassets/js/main.js
T
Darrel Israel c9bed24d8a formatted
2024-06-06 10:22:42 +08:00

22 lines
539 B
JavaScript

(function ($) {
"use strict";
var fullHeight = function () {
$(".js-fullheight").css("height", $(window).height());
$(window).resize(function () {
$(".js-fullheight").css("height", $(window).height());
});
};
fullHeight();
$(".toggle-password").click(function () {
$(this).toggleClass("fa-eye fa-eye-slash");
var input = $($(this).attr("toggle"));
if (input.attr("type") == "password") {
input.attr("type", "text");
} else {
input.attr("type", "password");
}
});
})(jQuery);