From: David Thompson Date: Sat, 21 Mar 2015 15:19:42 +0000 (-0400) Subject: 2015: live: Get rid of stream name/description that isn't working right. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=91f27b356f8fd632696ae215cab9a7c7123cccb0;p=libreplanet-static.git 2015: live: Get rid of stream name/description that isn't working right. --- diff --git a/2015/assets/js/stream.js b/2015/assets/js/stream.js index a0c11602..14e1e1ca 100644 --- a/2015/assets/js/stream.js +++ b/2015/assets/js/stream.js @@ -250,15 +250,18 @@ app.view = function(ctrl) { if(stats === app.nullStats) { info = m("i", "not broadcasting"); - } else if(app.validStreamInfo(stats)) { - info = [ - m("strong", stats.server_name), - " — ", - m("i", stats.server_description) - ]; } else { - info = null; + info = m("i", "live"); } + // else if(app.validStreamInfo(stats)) { + // info = [ + // m("strong", stats.server_name), + // " — ", + // m("i", stats.server_description) + // ]; + // } else { + // info = null; + // } return m(".row", [ m(".col-sm-8", info),