(streamId, streamIdSanitized)
| 346 | } |
| 347 | |
| 348 | function addAvailableStream(streamId, streamIdSanitized) { |
| 349 | // Create a master list of all streams |
| 350 | if (visNS.availableStreamsHash[streamIdSanitized] == null) { |
| 351 | visNS.availableStreamsHash[streamIdSanitized] = streamId; |
| 352 | updateAvailableStreams(); |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | function updateAvailableStreams() { |
| 357 | var container = jQuery("#available-streams"); |
no test coverage detected