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.
2 parents 8742db5 + 53b6500 commit b99d701Copy full SHA for b99d701
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