update designer with sleeves and all over print
This commit is contained in:
@@ -68,8 +68,17 @@
|
||||
<script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js"></script>
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
$('.reveal-password').click(function(e){
|
||||
var $pwd = $(".pwd");
|
||||
if ($pwd.attr('type') === 'password') {
|
||||
$pwd.attr('type', 'text');
|
||||
$(this).html('<i class="fa fa-eye-slash"></i>');
|
||||
} else {
|
||||
$pwd.attr('type', 'password');
|
||||
$(this).html('<i class="fa fa-eye"></i>');
|
||||
}
|
||||
});
|
||||
|
||||
// console.log($('.data-errors').length);
|
||||
if($('.data-errors').length > 0){
|
||||
$('#team-store-login').modal('show')
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user