botonera-tarjetas.html 737 Bytes
<div
    class="col-4 col-lg-2 px-1 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) : 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 || boton.imageDefault}}" alt="">
        <label ng-if="!boton.image" ng-bind="boton.nombre"></label>
    </button>
</div>