mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +09:00
Fix #981 clear date button clears all inputs in simple_world member skin
This commit is contained in:
parent
845b02b928
commit
084d353b8e
1 changed files with 3 additions and 2 deletions
|
|
@ -107,8 +107,9 @@
|
||||||
$(".inputDate").prop('readonly', false);
|
$(".inputDate").prop('readonly', false);
|
||||||
}
|
}
|
||||||
$(".dateRemover").click(function() {
|
$(".dateRemover").click(function() {
|
||||||
$(this).prevAll('input').val('');
|
$(this).prev('.inputDate').val('').prev('input[type=hidden]').val('');
|
||||||
return false;});
|
return false;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue