app.js
525 Bytes
angular.module('focaBotoneraFacturador', [])
.component('focaBotoneraFacturador', {
templateUrl: 'src/views/botonera-facturador.html',
controller: 'focaBotoneraFacturadorController',
bindings: {
max: '<',
botones: '<'
}
})
.component('focaBotoneraTarjetas', {
templateUrl: 'src/views/botonera-tarjetas.html',
controller: 'focaBotoneraTarjetasController',
bindings: {
botones: '<',
max: '<'
}
});