clockpicker
clockpicker copied to clipboard
Need a space between HH:SS AM
After selection of bootstrap clock picker it showing 02:52AM, But i need 02:52 AM
Thanks, for viewing my issue.
Quick fix that probably should be fixed differently - line Line 150 and 158 just add space:
$('.clockpicker-span-am-pm').empty().append('AM');
change to
$('.clockpicker-span-am-pm').empty().append(' AM');
Also, add space in this code H.amOrPm=" PM" to have space in input value.