update designer with sleeves and all over print

This commit is contained in:
Frank John Begornia
2019-06-03 18:00:37 +08:00
parent 30962d3b4e
commit 03f9649f9b
7 changed files with 598 additions and 210 deletions

View File

@@ -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;