diff --git a/index.html b/index.html
index 192c909..6c0b8fd 100644
--- a/index.html
+++ b/index.html
@@ -1,6 +1,6 @@
- OpenFest 2020
+ OpenFest 2021
@@ -125,7 +125,7 @@
{{/eventCount}}
- #OpenFest2020
+ #OpenFest2021
в Twitter
diff --git a/schedule.js b/schedule.js
index 3c4d4f1..23e2a3c 100644
--- a/schedule.js
+++ b/schedule.js
@@ -1,7 +1,7 @@
function Schedule(hallId, date, setPageTitle) {
var events = [];
- var apiEndpointPrefix = 'https://cfp.openfest.org/api/conferences/7';
+ var apiEndpointPrefix = 'https://cfp.openfest.org/api/conferences/8';
var pageTitle = 'OpenFest';
var room = '';
@@ -19,6 +19,7 @@ function Schedule(hallId, date, setPageTitle) {
$.getJSON(apiEndpointPrefix + '/events.json', function(eventsData) {
$.getJSON(apiEndpointPrefix + '/slots.json', function(slotsData) {
$.each(slotsData, function(slotId, slot) {
+ console.info(slot);
$.extend(eventsData[slot['event_id'].toString()], slot);
$.extend(eventsData[slot['event_id'].toString()], {"slotId": slotId});
});
diff --git a/styles.css b/styles.css
index b0a2550..e822008 100644
--- a/styles.css
+++ b/styles.css
@@ -2,7 +2,7 @@ body {
width: 100%;
height: 100%;
overflow: hidden;
- background-color: #06172A; /* BigBlueButton background */
+ /* background-color: #06172A; */ /* BigBlueButton background */
}
body,