A first flow was saved to disk
This commit is contained in:
parent
9f4d0b3aef
commit
4d48966d24
13 changed files with 363 additions and 241 deletions
|
|
@ -109,6 +109,12 @@ window.ChatHubHandler = (function ($) {
|
|||
$('<li></li>').append(tag + ': ' ).append(message).addClass(tag).appendTo($('#room_' + room));
|
||||
};
|
||||
|
||||
chat.client.addPublicStream = function (pubStrInfo)
|
||||
{
|
||||
$('<li></li>').append(pubStrInfo.sender + ': ')
|
||||
.append('<a href="'+pubStrInfo.url+'">'+pubStrInfo.title+'</a>').append('['+pubStrInfo.mediaType+']').addClass('streaminfo').appendTo(notifications);
|
||||
};
|
||||
|
||||
var setChanInfo = function (chanInfo) {
|
||||
if (chanInfo) {
|
||||
var chanId = 'r' + chanInfo.Name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue