Change to OpenFest2021
This commit is contained in:
parent
5801f6581b
commit
aea60ac5a7
|
@ -1,6 +1,6 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>OpenFest 2020</title>
|
<title>OpenFest 2021</title>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
|
||||||
|
@ -125,7 +125,7 @@
|
||||||
{{/eventCount}}
|
{{/eventCount}}
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<h1>#OpenFest2020</h1>
|
<h1>#OpenFest2021</h1>
|
||||||
<h2>в Twitter</h2>
|
<h2>в Twitter</h2>
|
||||||
</section>
|
</section>
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
function Schedule(hallId, date, setPageTitle) {
|
function Schedule(hallId, date, setPageTitle) {
|
||||||
var events = [];
|
var events = [];
|
||||||
|
|
||||||
var apiEndpointPrefix = 'https://cfp.openfest.org/api/conferences/7';
|
var apiEndpointPrefix = 'https://cfp.openfest.org/api/conferences/8';
|
||||||
|
|
||||||
var pageTitle = 'OpenFest';
|
var pageTitle = 'OpenFest';
|
||||||
var room = '';
|
var room = '';
|
||||||
|
@ -19,6 +19,7 @@ function Schedule(hallId, date, setPageTitle) {
|
||||||
$.getJSON(apiEndpointPrefix + '/events.json', function(eventsData) {
|
$.getJSON(apiEndpointPrefix + '/events.json', function(eventsData) {
|
||||||
$.getJSON(apiEndpointPrefix + '/slots.json', function(slotsData) {
|
$.getJSON(apiEndpointPrefix + '/slots.json', function(slotsData) {
|
||||||
$.each(slotsData, function(slotId, slot) {
|
$.each(slotsData, function(slotId, slot) {
|
||||||
|
console.info(slot);
|
||||||
$.extend(eventsData[slot['event_id'].toString()], slot);
|
$.extend(eventsData[slot['event_id'].toString()], slot);
|
||||||
$.extend(eventsData[slot['event_id'].toString()], {"slotId": slotId});
|
$.extend(eventsData[slot['event_id'].toString()], {"slotId": slotId});
|
||||||
});
|
});
|
||||||
|
|
|
@ -2,7 +2,7 @@ body {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: #06172A; /* BigBlueButton background */
|
/* background-color: #06172A; */ /* BigBlueButton background */
|
||||||
}
|
}
|
||||||
|
|
||||||
body,
|
body,
|
||||||
|
|
Loading…
Reference in New Issue