Sha256: f451dc090622d59a1e05cf14681df872dca30d334d347c3ba40e9768c475fa2c
Contents?: true
Size: 901 Bytes
Versions: 8
Compression:
Stored size: 901 Bytes
Contents
<div ng-controller="TimepickerDemoCtrl"> <uib-timepicker ng-model="mytime" ng-change="changed()" hour-step="hstep" minute-step="mstep" show-meridian="ismeridian"></uib-timepicker> <pre class="alert alert-info">Time is: {{mytime | date:'shortTime' }}</pre> <div class="row"> <div class="col-xs-6"> Hours step is: <select class="form-control" ng-model="hstep" ng-options="opt for opt in options.hstep"></select> </div> <div class="col-xs-6"> Minutes step is: <select class="form-control" ng-model="mstep" ng-options="opt for opt in options.mstep"></select> </div> </div> <hr> <button type="button" class="btn btn-info" ng-click="toggleMode()">12H / 24H</button> <button type="button" class="btn btn-default" ng-click="update()">Set to 14:00</button> <button type="button" class="btn btn-danger" ng-click="clear()">Clear</button> </div>
Version data entries
8 entries across 8 versions & 1 rubygems