Commit c19b19d494ec9ee3382a6638d134088a5eb460e6

Authored by Eric Fernandez
1 parent ba0cb2eb91

fix function

src/app/botonera/botonera.component.ts
1 import { Component } from '@angular/core'; 1 import { Component } from '@angular/core';
2 import { BotonServiceService } from 'src/app/boton-service.service'; 2 import { BotonServiceService } from 'src/app/boton-service.service';
3 3
4 @Component({ 4 @Component({
5 selector: 'app-botonera', 5 selector: 'app-botonera',
6 templateUrl: './botonera.component.html', 6 templateUrl: './botonera.component.html',
7 styleUrls: ['./botonera.component.css'] 7 styleUrls: ['./botonera.component.css']
8 }) 8 })
9 9
10 export class AppBotonera { 10 export class AppBotonera {
11 botones = new BotonServiceService().getBotones(); 11 botones = new BotonServiceService().getBotones();
12 paginas = [1]; 12 paginas = [1];
13 13
14 showTerminal() {
15 alert('No disponible aún');
16 }
17
14 } 18 }
15 19
src/etc/AppSetings.ts
1 export class AppSetings { 1 export class AppSetings {
2 public static END_POINT='http://localhost:6060/gateway-debo'; 2 public static END_POINT='http://10.231.45.234:6060/gateway-debo';
3 } 3 }
4 4