botonera-tarjetas.html
648 Bytes
<div
class="col-4 col-lg-2 pb-3"
ng-repeat="boton in botones track by $index"
ng-class="{'d-md-grid': boton == ''}">
<button
type="button"
class="btn btn-block btn-tarjeta rounded border p-1"
ng-click="
(boton != '') ? ejecutarFuncion(boton.label) : null;
activarBoton(boton);"
ng-class="
{
'd-sm-block h-100': boton == '',
'border-light': !boton.active,
'border-warning': boton.active
}"
ng-disabled="boton.disable"
>
<img ng-src="./img/{{boton.image}}" alt="">
</button>
</div>