diff --git a/pinaxcon/streaming/urls.py b/pinaxcon/streaming/urls.py index c4e30f5a..ca06063a 100644 --- a/pinaxcon/streaming/urls.py +++ b/pinaxcon/streaming/urls.py @@ -3,6 +3,6 @@ from pinaxcon.streaming import views urlpatterns = [ - url(r"^$", views.streaming_view, name="streaming-home"), - url(r'^feeds$', views.streaming_feeds, name="streaming-feeds"), + url(r"^$", views.streaming_view, name="streaming_home"), + url(r'^feeds$', views.streaming_feeds, name="streaming_feeds"), ] diff --git a/pinaxcon/templates/streaming/overview.html b/pinaxcon/templates/streaming/overview.html index b9219f43..dfaf0d5b 100644 --- a/pinaxcon/templates/streaming/overview.html +++ b/pinaxcon/templates/streaming/overview.html @@ -8,14 +8,14 @@ {% block content %}

Live Streaming is available to everyone attending the conference.

-

We encourage you to join in the chat via the Everything Open Matrix Space

+

We encourage you to join in the chat via the Everything Open Matrix Space.

There are currently no live streams available. Please check back soon.

Available Rooms

-
diff --git a/pinaxcon/templates/symposion/dashboard/_categories.html b/pinaxcon/templates/symposion/dashboard/_categories.html index 2377d36a..28153f77 100644 --- a/pinaxcon/templates/symposion/dashboard/_categories.html +++ b/pinaxcon/templates/symposion/dashboard/_categories.html @@ -63,7 +63,7 @@

Join the Conference

The conference stream is now open. Please join us to watch talks.

- Launch Conference + Launch Conference
diff --git a/static/src/js/streaming.js b/static/src/js/streaming.js index d1582f0e..0ce8b8f5 100644 --- a/static/src/js/streaming.js +++ b/static/src/js/streaming.js @@ -83,11 +83,13 @@ $(function() { for (var i = 0; i < streams.length; ++i) { var availableStream = streams[i]; - let streamButton = $('
  • ' + availableStream.room_name + '
  • ') + let streamItem = $('') + let streamButton = $('' + availableStream.room_name + '') if (availableStream.stream_id === selectedStream.id) { streamButton.addClass('active'); } - rooms.append(streamButton); + streamItem.append(streamButton); + rooms.append(streamItem); } $('ul.room-buttons > li > a').on('click', switch_room); @@ -98,6 +100,7 @@ $(function() { let activeRooms = $('.room-buttons .active'); activeRooms = activeRooms.removeClass('active'); + roomButton.addClass('active'); let streamId = roomButton.data('streamId'); let stream = null;