Unbinds the video element from the tile if it exists for the provided tileId.
- The video tile's bounded video element and that element's width and height are set to null.
+ The video tile's bounded video element, that element's srcObject, width and height are set to null.
This does not remove the provided tileId mapping from the tile map in the DefaultVideoTileController.
To remove the mapping and destroy the tile for this tileId, you can use removeVideoTile.
diff --git a/src/videotilecontroller/VideoTileController.ts b/src/videotilecontroller/VideoTileController.ts
index 203c0e71e8..16f9bc4205 100644
--- a/src/videotilecontroller/VideoTileController.ts
+++ b/src/videotilecontroller/VideoTileController.ts
@@ -22,7 +22,7 @@ export default interface VideoTileController {
/**
* Unbinds the video element from the tile if it exists for the provided tileId.
- * The video tile's bounded video element and that element's width and height are set to null.
+ * The video tile's bounded video element, that element's srcObject, width and height are set to null.
* This does not remove the provided tileId mapping from the tile map in the [[DefaultVideoTileController]].
* To remove the mapping and destroy the tile for this tileId, you can use [[removeVideoTile]].
*/
Unbinds the video element from the tile if it exists for the provided tileId. - The video tile's bounded video element and that element's width and height are set to null. + The video tile's bounded video element, that element's srcObject, width and height are set to null. This does not remove the provided tileId mapping from the tile map in the DefaultVideoTileController. To remove the mapping and destroy the tile for this tileId, you can use removeVideoTile.