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

Not clear how to have a simple time picker in AM/ PM from the examples #214

Closed vdevappa closed 6 years ago

vdevappa commented 6 years ago

I did not find an easy way to do this and spent some time figuring out how to do this.

vdevappa commented 6 years ago

The HTML to do this is:

`

                                                                                </div>`

Similar to what is mentioned in another case, you need to add the configuration as shown below:

//https://github.com/indrimuska/angular-moment-picker/issues/206 app.config(['momentPickerProvider', function (momentPickerProvider) { momentPickerProvider.options({ hoursFormat: 'LT', minutesFormat: 'LT' }); }]);