I am using a plugin that displays the time in hours and minutes. However, I only need to show the hours. Is there a way to hide the minutes block?
This is my HTML code:
<uib-timepicker ng-model="mytime" ng-change="changed()" hour-step="1" minute-step="10" show-meridian="false" readonly-input="true"></uib-timepicker>
And here is my Controller.js code:
$scope.mytime = new Date();