Commit 55c6822be8d9617ef93827717119e6ab81beab79

Authored by Eric
1 parent 179d4352db
Exists in master and in 1 other branch develop

cambios mobile

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/views/botonera-facturador.html
1 <div 1 <div
2 class="col-3 col-sm-2 px-1 py-1 m-auto m-md-0" 2 class="col-4 col-sm-2 px-1 py-1 m-auto m-md-0"
3 ng-repeat="boton in botones track by $index" 3 ng-repeat="boton in botones track by $index"
4 ng-class="{'d-md-grid': boton == ''}"> 4 ng-class="{'d-md-grid': boton == ''}">
5 <button 5 <button
6 type="button" 6 type="button"
7 class="btn btn-default btn-block btn-xs text-center py-1 rounded border border-light foca-overflow-hidden" 7 class="btn btn-default btn-block btn-xs text-center py-1 rounded border border-light foca-overflow-hidden"
8 ng-click="(boton != '') ? ejecutarFuncion(boton.label) : null" 8 ng-click="(boton != '') ? ejecutarFuncion(boton.label) : null"
9 ng-class="{'d-sm-block h-100': boton == ''}" 9 ng-class="{'d-sm-block h-100': boton == ''}"
10 ng-disabled="boton.disable" 10 ng-disabled="boton.disable"
11 > 11 >
12 <img ng-src="./img/{{boton.image}}" alt=""> 12 <img ng-src="./img/{{boton.image}}" alt="">
13 <span>{{boton.label}}</span> 13 <span>{{boton.label}}</span>
14 </button> 14 </button>
15 </div> 15 </div>
16 16