Commit 7eac3d775243d1a431230aeae481cc0fc825e29f

Authored by Eric Fernandez
Exists in master and in 1 other branch develop

Merge branch 'master' of http://git.focasoftware.com/npm/foca-botonera-facturador

# Conflicts:
#	src/views/botonera-facturador.html
src/views/botonera-facturador.html
1 <div 1 <div
2 class="col-4 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-none d-md-grid': boton == ''}"> 4 ng-class="{'d-none 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" 7 class="btn btn-default btn-block btn-xs text-center py-1 rounded border border-light"
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 > 10 >
11 <img src="./img/{{boton.image}}" alt="" ng-if="boton !== ''"> 11 <img ng-src="./img/{{boton.image}}" alt="">
12 <span>{{boton.label}}</span> 12 <span>{{boton.label}}</span>
13 </button> 13 </button>
14 </div> 14 </div>
15 15