AltitudeWeb/frontend/src/app/copy-ip/copy-ip.component.ts

17 lines
371 B
TypeScript
Raw Normal View History

import {Component} from '@angular/core';
@Component({
selector: 'app-copy-ip',
templateUrl: './copy-ip.component.html',
styleUrl: './copy-ip.component.scss'
})
export class CopyIpComponent {
public displayText: string = 'Copy IP'
public copyIpToClipboard(): void {
navigator.clipboard.writeText('play.alttd.com');
this.displayText = 'Copied!';
}
}