Skip to content

Commit 9131d24

Browse files
committed
cs link
1 parent a8ed44c commit 9131d24

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>RoboCon - Robot Framework Conference</title>
88
<script defer src="/spa.js"></script>
9-
<script type="module" crossorigin src="/assets/index-1Q8qcmKY.js"></script>
9+
<script type="module" crossorigin src="/assets/index-Ctxelkct.js"></script>
1010
<link rel="stylesheet" crossorigin href="/assets/index-CrdC6FFn.css">
1111
</head>
1212
<body>

src/components/Talks.vue

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,7 @@ export default {
164164
const newUrl = `${window.location.href.split('?')[0].split('#')[0]}?talk=${this.slugify(talk.title)}`
165165
history.replaceState(null, null, newUrl)
166166
},
167-
ongoing(talk) {
168-
if (talk.room !== 1193) return false
169-
const start = new Date(talk.start)
170-
const end = new Date(talk.end)
171-
if (isNaN(start) || isNaN(end)) return false
172-
return isWithinInterval(new Date(), { start, end })
173-
}
167+
174168
}
175169
}
176170
</script>

src/router/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,14 @@ const getRoutes = () => {
2525
component: Archive,
2626
children: []
2727
},
28+
{
29+
path: '/cs',
30+
name: 'CS',
31+
beforeEnter: () => {
32+
window.location.href = 'https://docs.google.com/forms/d/e/1FAIpQLSfVuVGv4cimwv6rTHi869n2b9yFJFXqlV9AS5wQ9MgWIFu1ww/viewform'
33+
return false
34+
}
35+
},
2836
{
2937
path: '/:pathMatch(.*)*',
3038
name: 'NotFound',

0 commit comments

Comments
 (0)