Ok, this is a bit of hockey, but based on the answer here:
https://github.com/Eonasdan/bootstrap-datetimepicker/issues/840
I added
$(".datetimepicker").on 'dp.show',() β $(document).find('.picker-switch a[data-action="togglePicker"]').click()
to my coffee. Jquery equivalent will be
$(".pickthetime").on('dp.show', function(){ $(document).find('.picker-switch a[data-action="togglePicker"]').click() });
It's kind of what I'm looking for, but the movement of the slider makes it a little shitty. Any thoughts?
source share