diff --git a/lsp/main.js b/lsp/main.js index 6d413382..c438fdd2 100644 --- a/lsp/main.js +++ b/lsp/main.js @@ -1033,8 +1033,15 @@ { var embedbase = 'http://' + parseURL(settings.server).host + ':' + getHTTPControllerPort() + '/'; - $('#page').append( $('
').attr('class', 'nocapitals').text('The info embed URL is "' + embedbase + 'info_' + streamname + '.js".') ); - $('#page').append( $('
').attr('class', 'nocapitals').text('The embed embed URL is "' + embedbase + 'embed_' + streamname + '.js".') ); + // TODO .attr().html() doesn't work... make this work in 2 lines again + var iem = $('
').attr('class', 'nocapitals');
+ iem.html('The info embed URL is ' + embedbase + 'info_' + streamname + '.js
');
+
+ var eem = $('
').attr('class', 'nocapitals');
+ eem.html('The embed embed URL is ' + embedbase + 'embed_' + streamname + '.js
');
+
+ $('#page').append( iem );
+ $('#page').append( eem );
$('#page').append( $('