Commit 09f295f531038c1b805caa99ff7ec014ff1731ad
Exists in
master
and in
1 other branch
Merge branch 'master' into 'master'
Master(efernandez) See merge request !7
Showing
2 changed files
Show diff stats
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 |