Merge pull request #757 from wilr/trac/7504

FIX: ensure date input has a date picker to trigger open (#7504).
This commit is contained in:
Simon Welsh 2012-08-30 03:42:12 -07:00
commit 14b8071803

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