formatted
This commit is contained in:
Vendored
+9209
-1
File diff suppressed because one or more lines are too long
+5252
-2696
File diff suppressed because it is too large
Load Diff
Vendored
+2942
-1
File diff suppressed because one or more lines are too long
Vendored
+5511
-1
File diff suppressed because one or more lines are too long
@@ -1,6 +1,6 @@
|
|||||||
// Add this code to your 1.js file
|
// Add this code to your 1.js file
|
||||||
$(document).ready(function() {
|
$(document).ready(function () {
|
||||||
$(".toggle-password").click(function() {
|
$(".toggle-password").click(function () {
|
||||||
$(this).toggleClass("fa-eye fa-eye-slash");
|
$(this).toggleClass("fa-eye fa-eye-slash");
|
||||||
var input = $($(this).attr("toggle"));
|
var input = $($(this).attr("toggle"));
|
||||||
|
|
||||||
|
|||||||
+6
-11
@@ -1,19 +1,15 @@
|
|||||||
(function($) {
|
(function ($) {
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
var fullHeight = function() {
|
var fullHeight = function () {
|
||||||
|
$(".js-fullheight").css("height", $(window).height());
|
||||||
$('.js-fullheight').css('height', $(window).height());
|
$(window).resize(function () {
|
||||||
$(window).resize(function(){
|
$(".js-fullheight").css("height", $(window).height());
|
||||||
$('.js-fullheight').css('height', $(window).height());
|
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
fullHeight();
|
fullHeight();
|
||||||
|
|
||||||
$(".toggle-password").click(function() {
|
$(".toggle-password").click(function () {
|
||||||
|
|
||||||
$(this).toggleClass("fa-eye fa-eye-slash");
|
$(this).toggleClass("fa-eye fa-eye-slash");
|
||||||
var input = $($(this).attr("toggle"));
|
var input = $($(this).attr("toggle"));
|
||||||
if (input.attr("type") == "password") {
|
if (input.attr("type") == "password") {
|
||||||
@@ -22,5 +18,4 @@
|
|||||||
input.attr("type", "password");
|
input.attr("type", "password");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
|||||||
+1194
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user