- Timestamp:
- 01/24/22 21:08:32 (3 years ago)
- Branches:
- master
- Children:
- 76712b2
- Parents:
- bdd6491
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/homepage/homepage.component.ts
rbdd6491 rb738035 1 1 import { HttpErrorResponse } from '@angular/common/http'; 2 import { identifierModuleUrl } from '@angular/compiler'; 2 3 import { Component, OnInit } from '@angular/core'; 3 4 import { Router } from '@angular/router'; 5 import { MessageService } from 'primeng/api'; 4 6 import { DialogService, DynamicDialogRef } from 'primeng/dynamicdialog'; 5 7 import { LoginRequest } from '../_models/dto/loginRequest'; … … 20 22 21 23 imageURI = 'https://i.pinimg.com/736x/a1/1a/57/a11a572a1ec4e07039bbd04661a3b035.jpg'; 22 myLogo = 'http://www.logo-designer.co/wp-content/uploads/2020/02/2020-tripadvisor-new-logo-design-by-mother-design-4.png';23 24 responsiveOptions; 24 25 locations: Location[]; … … 27 28 28 29 constructor(private locationService: LocationService, private dialogService: DialogService, private userService: UserService, 29 private router: Router ) {30 private router: Router, private messageService: MessageService) { 30 31 this.responsiveOptions = [ 31 32 { … … 61 62 } 62 63 ); 63 64 64 } 65 65 … … 82 82 }, 83 83 err => { 84 84 console.log("oops"); 85 85 }); 86 86 }
Note:
See TracChangeset
for help on using the changeset viewer.