indrimuska / angular-moment-picker

Angular Moment Picker is an AngularJS directive for date and time picker using Moment.js.
http://indrimuska.github.io/angular-moment-picker/
MIT License
527 stars 229 forks source link

Hour view after clicking day #290

Closed bgilbert6 closed 5 years ago

bgilbert6 commented 5 years ago

Is there anyway to display this format in 12 hour format? I've only seen references to showing the minutes view in 24 hour format. But what about the opposite?

bgilbert6 commented 5 years ago

angular .module('myApp', ['moment-picker']) .config(['momentPickerProvider', function (momentPickerProvider) { momentPickerProvider.options({ hoursFormat: "hh:[00] A" }); }]);