mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-07-01 04:26:23 +00:00
Add url bar controller
This commit is contained in:
@ -21,6 +21,7 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
||||
deploymentNotificationSubscription: Subscription;
|
||||
@ViewChild('webiframe') webiframe: ElementRef;
|
||||
@ViewChild('tfwmessages') messages: ElementRef;
|
||||
@ViewChild('urlbar') urlbar: ElementRef;
|
||||
|
||||
layout: string = config.dashboard.currentLayout;
|
||||
hideMessages: boolean = config.dashboard.hideMessages;
|
||||
@ -144,4 +145,8 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
||||
iframeLoad(): void {
|
||||
this.iframeUrl = this.webiframe.nativeElement.contentDocument.location.href.replace(document.baseURI, '/');
|
||||
}
|
||||
|
||||
changeIframeURL() {
|
||||
this.webiframe.nativeElement.contentDocument.location.href = document.baseURI + this.urlbar.nativeElement.value.substr(1);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user