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
|
||||
$(document).ready(function() {
|
||||
$(".toggle-password").click(function() {
|
||||
$(document).ready(function () {
|
||||
$(".toggle-password").click(function () {
|
||||
$(this).toggleClass("fa-eye fa-eye-slash");
|
||||
var input = $($(this).attr("toggle"));
|
||||
|
||||
|
||||
+6
-11
@@ -1,19 +1,15 @@
|
||||
(function($) {
|
||||
|
||||
(function ($) {
|
||||
"use strict";
|
||||
|
||||
var fullHeight = function() {
|
||||
|
||||
$('.js-fullheight').css('height', $(window).height());
|
||||
$(window).resize(function(){
|
||||
$('.js-fullheight').css('height', $(window).height());
|
||||
var fullHeight = function () {
|
||||
$(".js-fullheight").css("height", $(window).height());
|
||||
$(window).resize(function () {
|
||||
$(".js-fullheight").css("height", $(window).height());
|
||||
});
|
||||
|
||||
};
|
||||
fullHeight();
|
||||
|
||||
$(".toggle-password").click(function() {
|
||||
|
||||
$(".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
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user