#1273 PC 회원가입 페이지에서 생일 삭제 버튼 작동 되도록 수정

https://github.com/xpressengine/xe-core/issues/1273 PC 회원 가입 페이지에서 생일 삭제
버튼 작동 되도록 수정.
This commit is contained in:
MinSoo Kim 2015-02-17 14:20:34 +09:00
parent c5893358d5
commit 0f2e900816

View file

@ -82,7 +82,7 @@ jQuery(function($){
$.extend(option,$.datepicker.regional['{$lang_type}']);
$(".inputDate").datepicker(option);
$(".dateRemover").click(function() {
$(this).parent().prevAll('input').val('');
$(this).prev('input').val('');
return false;});
});
})(jQuery);