Commit cd82850dffd54204788dec8e79965ac2abe141cd
1 parent
57e3ddc3b4
Exists in
master
reemplazo {{}} por ng-bind
Showing
1 changed file
with
4 additions
and
1 deletions
Show diff stats
src/views/botonera-lateral.html
1 | <div class="container botonera-lateral"> | 1 | <div class="container botonera-lateral"> |
2 | <div class="row"> | 2 | <div class="row"> |
3 | <div class="col-auto my-2 col-2 offset-10 d-none d-md-flex" style="min-height: 176px"> | 3 | <div class="col-auto my-2 col-2 offset-10 d-none d-md-flex" style="min-height: 176px"> |
4 | <div class="px-2 mt-auto"> | 4 | <div class="px-2 mt-auto"> |
5 | <div class="container"> | 5 | <div class="container"> |
6 | <div class="row"> | 6 | <div class="row"> |
7 | <button | 7 | <button |
8 | ng-click="botones.funcionGuardar()" | 8 | ng-click="botones.funcionGuardar()" |
9 | ng-show="botones.guardar" | 9 | ng-show="botones.guardar" |
10 | type="button" | 10 | type="button" |
11 | title="Guardar" | 11 | title="Guardar" |
12 | class="btn btn-block border border-dark"> | 12 | class="btn btn-block border border-dark"> |
13 | <strong>GUARDAR</strong> | 13 | <strong>GUARDAR</strong> |
14 | </button> | 14 | </button> |
15 | <button | 15 | <button |
16 | ng-show="botones.pausar" | 16 | ng-show="botones.pausar" |
17 | type="button" | 17 | type="button" |
18 | title="Pausar" | 18 | title="Pausar" |
19 | class="btn btn-block border border-dark"> | 19 | class="btn btn-block border border-dark"> |
20 | <strong>PAUSAR</strong> | 20 | <strong>PAUSAR</strong> |
21 | </button> | 21 | </button> |
22 | <button | 22 | <button |
23 | ng-click="cancelar()" | 23 | ng-click="cancelar()" |
24 | ng-show="botones.cancelar" | 24 | ng-show="botones.cancelar" |
25 | type="button" | 25 | type="button" |
26 | title="Cancelar" | 26 | title="Cancelar" |
27 | class="btn btn-block border border-dark"> | 27 | class="btn btn-block border border-dark"> |
28 | <strong>CANCELAR</strong> | 28 | <strong>CANCELAR</strong> |
29 | </button> | 29 | </button> |
30 | <button | 30 | <button |
31 | ng-click="salir()" | 31 | ng-click="salir()" |
32 | ng-show="botones.salir" | 32 | ng-show="botones.salir" |
33 | type="button" | 33 | type="button" |
34 | title="Salir" | 34 | title="Salir" |
35 | class="btn btn-block border border-dark"> | 35 | class="btn btn-block border border-dark"> |
36 | <strong>SALIR</strong> | 36 | <strong>SALIR</strong> |
37 | </button> | 37 | </button> |
38 | <button | 38 | <button |
39 | ng-repeat="boton in botones.custom" | 39 | ng-repeat="boton in botones.custom" |
40 | ng-click="boton.funcion()" | 40 | ng-click="boton.funcion()" |
41 | type="button" | 41 | type="button" |
42 | title="{{boton.title}}" | 42 | title="{{boton.title}}" |
43 | class="btn btn-block border border-dark"> | 43 | class="btn btn-block border border-dark"> |
44 | <strong class="text-uppercase">{{boton.title}}</strong> | 44 | <strong |
45 | class="text-uppercase" | ||
46 | ng-bind="boton.title"> | ||
47 | </strong> | ||
45 | </button> | 48 | </button> |
46 | </div> | 49 | </div> |
47 | </div> | 50 | </div> |
48 | </div> | 51 | </div> |
49 | </div> | 52 | </div> |
50 | </div> | 53 | </div> |
51 | </div> | 54 | </div> |
52 | <div class="container botonera-lateral teclado"> | 55 | <div class="container botonera-lateral teclado"> |
53 | <div class="row"> | 56 | <div class="row"> |
54 | <div class="col-auto my-2 col-2 offset-10 d-none d-md-flex" style="min-height: 176px"> | 57 | <div class="col-auto my-2 col-2 offset-10 d-none d-md-flex" style="min-height: 176px"> |
55 | <div class="px-2 mt-auto"> | 58 | <div class="px-2 mt-auto"> |
56 | <div class="container"> | 59 | <div class="container"> |
57 | <div class="row"> | 60 | <div class="row"> |
58 | <div | 61 | <div |
59 | class="btn-group-toggle btn btn-block btn-default border border-dark" | 62 | class="btn-group-toggle btn btn-block btn-default border border-dark" |
60 | data-toggle="buttons" | 63 | data-toggle="buttons" |
61 | ng-click="cambioUsoTeclado()" | 64 | ng-click="cambioUsoTeclado()" |
62 | title="Activar/desactivar teclado"> | 65 | title="Activar/desactivar teclado"> |
63 | <label | 66 | <label |
64 | class=" active boton-activar-teclado mb-0" | 67 | class=" active boton-activar-teclado mb-0" |
65 | ng-class="{'teclado-activar': usarTeclado}"> | 68 | ng-class="{'teclado-activar': usarTeclado}"> |
66 | <input | 69 | <input |
67 | type="checkbox" | 70 | type="checkbox" |
68 | autocomplete="off" | 71 | autocomplete="off" |
69 | > | 72 | > |
70 | <strong>TECLADO</strong> | 73 | <strong>TECLADO</strong> |
71 | </label> | 74 | </label> |
72 | </div> | 75 | </div> |
73 | </div> | 76 | </div> |
74 | </div> | 77 | </div> |
75 | </div> | 78 | </div> |
76 | </div> | 79 | </div> |
77 | </div> | 80 | </div> |
78 | </div> | 81 | </div> |
79 | 82 |