A simple dropdown style timepicker directive.
Include the timepicker directive file, and attach it to an input field.
<input type="text" dn-timepicker="h:mm a" min-time="00:00" max-time="23:59" step="15" ng-model="timepicker.model" />
The format to use when displaying the time in the input box and the dropdown list.
Default value: 'h:mm a'
Added: 1.0.5
The model that the timepicker is bound to. If no model is given, it will create a new one. The timepicker also accepts a time string, provided it follows the defined format.
Default value: new Date()
Added: 1.0.0
The format to use when displaying the time in the input box and the dropdown list.
Default value: 'h:mm a'
Added: 1.0.0
This attribute is now deprecated. Please specify the time format as value for the directive attribute.
The lower limit for the list of selectable times. The value must match the format used.
Default value: '00:00'
Added: 1.0.0
The upper limit for the list of selectable time. The value must match the format used.
Default value: '23:59'
Added: 1.0.0
The amount of time between each item in the list of selectable time. Values are in minutes. Add 'h' after the integer to use hours, i.e. '1h' will be converted to 60 minutes.
Default value: '15'
Added: 1.0.0