Claude init file + div. improvements
This commit is contained in:
@@ -7,10 +7,16 @@ import {Component, OnInit} from '@angular/core';
|
||||
})
|
||||
export class LandingpageComponent implements OnInit {
|
||||
|
||||
constructor() {
|
||||
}
|
||||
copied = false;
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
constructor() {}
|
||||
|
||||
ngOnInit(): void {}
|
||||
|
||||
copyUrl(): void {
|
||||
navigator.clipboard.writeText('https://api.nachklang.art/calendar/events/public/ical').then(() => {
|
||||
this.copied = true;
|
||||
setTimeout(() => { this.copied = false; }, 2500);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user