Commit cd58fc31dc25760e48335009f32c42e5fb4929cd
1 parent
6bcc15aa08
Exists in
master
and in
1 other branch
arreglos identacion
Showing
4 changed files
with
7 additions
and
12 deletions
Show diff stats
src/app/components/home/home.component.html
1 | 1 | <div class="container-fluid p-0"> |
2 | 2 | <img |
3 | - src="{{apiImagenes}}/imagenes/homeBackground.jpg" | |
3 | + src="../../../assets/img/homeBackground.jpg" | |
4 | 4 | class="background-image vh-100 w-100"> |
5 | 5 | <div |
6 | 6 | class="fade-in vh-100 d-flex align-content-between flex-wrap disable-user-select" |
... | ... | @@ -28,7 +28,7 @@ |
28 | 28 | <!-- FOOTER --> |
29 | 29 | <div class="vh-15 row m-0 flex-row-reverse w-100 bg-gray"> |
30 | 30 | <div class="h-100 w-50 bg-white rounded-top-left"> |
31 | - <img class="h-100 p-2 m-auto d-block" src="{{apiImagenes}}/imagenes/logodebo.png"> | |
31 | + <img class="h-100 p-2 m-auto d-block" src="../../../assets/img/logodebo.png"> | |
32 | 32 | </div> |
33 | 33 | </div> |
34 | 34 |
src/app/components/popover-promos/popover-promos.component.ts
src/app/components/popover-sinonimos/popover-sinonimos.component.ts
... | ... | @@ -14,7 +14,7 @@ export class PopoverSinonimosComponent implements OnInit { |
14 | 14 | //Directiva del popover, para poder cerrarlo desde este componente |
15 | 15 | @Input() popover: PopoverDirective; |
16 | 16 | @Input() popoverContent: Sinonimo[]; |
17 | - @Output() productosPersonalizados = new EventEmitter<any>(); | |
17 | + @Output() productosPersonalizados = new EventEmitter<any>(); | |
18 | 18 | private cantMin: number = 1; |
19 | 19 | private cantMax: number = 50; |
20 | 20 | private cantidadRestanteSinonimos: number = 0; |
... | ... | @@ -61,7 +61,7 @@ export class PopoverSinonimosComponent implements OnInit { |
61 | 61 | }) |
62 | 62 | }) |
63 | 63 | |
64 | - this.productosPersonalizados.emit({productosAenviar: productosAenviar,cantidadPromo: this.cantidadPromo}); | |
64 | + this.productosPersonalizados.emit({productosAenviar: productosAenviar, cantidadPromo: this.cantidadPromo}); | |
65 | 65 | this.popover.hide(); |
66 | 66 | } |
67 | 67 |