user-relationship.component.ts 496 B

12345678910111213141516171819202122
  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'app-user-relationship',
  4. templateUrl: './user-relationship.component.html',
  5. styleUrls: ['./user-relationship.component.scss']
  6. })
  7. export class UserRelationshipComponent {
  8. previousUrl: string;
  9. constructor() {
  10. this.previousUrl = window.location.href;
  11. }
  12. redirectToExternalLink() {
  13. window.location.href = 'https://www.lddgo.net/chart/character-relationship';
  14. }
  15. goBack() {
  16. window.history.back();
  17. }
  18. }