Fix #981 clear date button clears all inputs in simple_world member skin

This commit is contained in:
Kijin Sung 2018-01-12 20:14:20 +09:00
parent 845b02b928
commit 084d353b8e

View file

@ -107,8 +107,9 @@
$(".inputDate").prop('readonly', false);
}
$(".dateRemover").click(function() {
$(this).prevAll('input').val('');
return false;});
$(this).prev('.inputDate').val('').prev('input[type=hidden]').val('');
return false;
});
});
})(jQuery);
</script>