From b08a66691931dae6ef2fd57bbdb324a81ae605b7 Mon Sep 17 00:00:00 2001 From: Andrew Engelbrecht Date: Fri, 15 Mar 2019 15:38:07 -0400 Subject: [PATCH] added /join command to irc chan names on live page this makes it easier for people to figure out how to join those channels --- 2019/assets/js/stream.js | 4 ++-- 2019/live/room123.html | 4 ++-- 2019/live/room144.html | 4 ++-- 2019/live/room155.html | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/2019/assets/js/stream.js b/2019/assets/js/stream.js index 0a44840e..35e70057 100644 --- a/2019/assets/js/stream.js +++ b/2019/assets/js/stream.js @@ -296,13 +296,13 @@ app.view = function(ctrl) { m("ul", [ m("li", [ "Conference-wide Freenode IRC channel: ", - m("strong", "#libreplanet") + m("strong", "/join #libreplanet") ]), m("li", [ "Freenode IRC channel for ", stream.name, ": ", - m("strong", stream.ircChannel) + m("strong", ["/join ", stream.ircChannel]) ]), m("li", [ "Conference-wide Mumble (voice chat) server: ", diff --git a/2019/live/room123.html b/2019/live/room123.html index 531138eb..e89e8fe8 100755 --- a/2019/live/room123.html +++ b/2019/live/room123.html @@ -29,8 +29,8 @@

Join the discussion online!

diff --git a/2019/live/room144.html b/2019/live/room144.html index 74e39513..b63aed93 100755 --- a/2019/live/room144.html +++ b/2019/live/room144.html @@ -28,8 +28,8 @@

Join the discussion online!

diff --git a/2019/live/room155.html b/2019/live/room155.html index 4ee29444..8f5ab616 100755 --- a/2019/live/room155.html +++ b/2019/live/room155.html @@ -28,8 +28,8 @@

Join the discussion online!

-- 2.25.1