Commit 9ce012d901b1c938b8acc488eb6c367923b95afc

Authored by Eric Fernandez
1 parent 05178cd950
Exists in master

focus en aceptar

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
src/views/foca-fecha.html
1 <div class="modal-header py-1"> 1 <div class="modal-header py-1">
2 <h4 ng-bind="titulo"></h4> 2 <h4 ng-bind="titulo"></h4>
3 <strong ng-bind="fecha | date: 'dd/MMMM/yyyy HH:mm'"></strong> 3 <strong ng-bind="fecha | date: 'dd/MMMM/yyyy HH:mm'"></strong>
4 </div> 4 </div>
5 <div class="modal-body"> 5 <div class="modal-body">
6 <div class="offset-2"> 6 <div class="offset-2">
7 <div uib-datepicker ng-model="fecha"></div> 7 <div uib-datepicker ng-model="fecha"></div>
8 </div> 8 </div>
9 </div> 9 </div>
10 <div class="modal-footer"> 10 <div class="modal-footer">
11 <button 11 <button
12 class="form-control btn btn-secondary" 12 class="form-control btn btn-secondary"
13 ng-click="cancelar()">Cancelar</button> 13 ng-click="cancelar()">Cancelar</button>
14 <button 14 <button
15 class="form-control btn btn-primary" 15 class="form-control btn btn-primary"
16 foca-focus="true"
16 ng-click="aceptar()">Aceptar</button> 17 ng-click="aceptar()">Aceptar</button>
17 </div> 18 </div>
18 19