formatted

This commit is contained in:
Darrel Israel
2024-06-06 10:22:42 +08:00
parent 00e5a38bfe
commit c9bed24d8a
7 changed files with 25017 additions and 3614 deletions
+9209 -1
View File
File diff suppressed because one or more lines are too long
+4878 -2322
View File
File diff suppressed because it is too large Load Diff
+2942 -1
View File
File diff suppressed because one or more lines are too long
+5511 -1
View File
File diff suppressed because one or more lines are too long
+2 -7
View File
@@ -1,19 +1,15 @@
(function ($) {
"use strict";
var fullHeight = function () {
$('.js-fullheight').css('height', $(window).height());
$(".js-fullheight").css("height", $(window).height());
$(window).resize(function () {
$('.js-fullheight').css('height', $(window).height());
$(".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") {
@@ -22,5 +18,4 @@
input.attr("type", "password");
}
});
})(jQuery);
+1194 -1
View File
File diff suppressed because one or more lines are too long