You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
621 B
19 lines
621 B
import { Component, OnInit } from '@angular/core'; |
|
import { Router,ActivatedRoute } from '@angular/router' |
|
import { DomSanitizer } from '@angular/platform-browser'; |
|
|
|
@Component({ |
|
selector: 'app-web-look', |
|
templateUrl: './web-look.component.html', |
|
styleUrls: ['./web-look.component.scss'] |
|
}) |
|
export class WebLookComponent implements OnInit { |
|
|
|
constructor(private router:Router,private route:ActivatedRoute,private sanitizer: DomSanitizer) { } |
|
url:any = sessionStorage.getItem("url") |
|
thirdPartyURL:any |
|
ngOnInit(): void { |
|
this.thirdPartyURL = this.sanitizer.bypassSecurityTrustResourceUrl(this.url) |
|
} |
|
|
|
}
|
|
|