FIX: ensure date input has a date picker to trigger open (#7504)

This commit is contained in:
Will Rossiter 2012-08-30 21:35:28 +12:00
parent daf347f08c
commit 10d0296721

View File

@ -28,6 +28,9 @@
$('.field.date input.text').live('click', function() {
$(this).ssDatepicker();
$(this).datepicker('show');
if($(this).data('datepicker')) {
$(this).datepicker('show');
}
});
}(jQuery));