We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8742db5 commit 53b6500Copy full SHA for 53b6500
ts/Event.ts
@@ -24,6 +24,12 @@ export default class Event implements UiComponent {
24
} else {
25
new FutureEvent(this._event).appendTo(entry);
26
}
27
+
28
+ const hashId = "#_" + this._event.datetime.utc().unix();
29
+ if (window.location.hash == hashId) {
30
+ window.location.hash = "";
31
+ setTimeout(() => { window.location.hash = hashId; }, 0);
32
+ }
33
34
35
isCancelled(): boolean {
0 commit comments