Skip to content

Commit e8b9748

Browse files
committed
docs(ui): Correct receiver IDs in the UI tutorial
Closes #2926 Change-Id: If535dc03f585ba3d7b6b504454dc920e822aabc4
1 parent 221f8a8 commit e8b9748

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/tutorials/ui.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Set up controls with HTML data attributes:
3030
The data-shaka-player-cast-receiver-id tag allows you to provide a Cast Application ID that
3131
the cast button will cast to; the value provided here is the sample cast receiver. -->
3232
<div data-shaka-player-container style="max-width:40em"
33-
data-shaka-player-cast-receiver-id="7B25EC44">
33+
data-shaka-player-cast-receiver-id="930DEB06">
3434
<!-- The data-shaka-player tag will make the UI library use this video element.
3535
If no video is provided, the UI will automatically make one inside the container div. -->
3636
<video autoplay data-shaka-player id="video" style="width:100%;height:100%"></video>
@@ -111,7 +111,7 @@ set up a listener for the 'caststatuschanged' events.
111111
<!-- Add a data-shaka-player-cast-receiver-id tag to provide a Cast Application ID that
112112
the cast button will cast to; the value provided here is the sample cast receiver. -->
113113
<div data-shaka-player-container style="max-width:40em"
114-
data-shaka-player-cast-receiver-id="A15A181D">
114+
data-shaka-player-cast-receiver-id="930DEB06">
115115
</div>
116116
```
117117

@@ -137,7 +137,7 @@ or a `<source>` tag inside it to enable auto loading of the specified content.
137137

138138
```html
139139
<div data-shaka-player-container style="max-width:40em"
140-
data-shaka-player-cast-receiver-id="7B25EC44">
140+
data-shaka-player-cast-receiver-id="930DEB06">
141141
<!-- The manifest url in the src attribute will be automatically loaded -->
142142
<video autoplay data-shaka-player id="video" style="width:100%;height:100%"
143143
src="https://storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd"></video>
@@ -148,7 +148,7 @@ or
148148

149149
```html
150150
<div data-shaka-player-container style="max-width:40em"
151-
data-shaka-player-cast-receiver-id="7B25EC44">
151+
data-shaka-player-cast-receiver-id="930DEB06">
152152
<video autoplay data-shaka-player id="video" style="width:100%;height:100%">
153153
<!-- The manifest url in the src attribute will be auto loaded -->
154154
<source src="https://storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd"/>
@@ -161,7 +161,7 @@ call to the first one fails.
161161

162162
```html
163163
<div data-shaka-player-container style="max-width:40em"
164-
data-shaka-player-cast-receiver-id="7B25EC44">
164+
data-shaka-player-cast-receiver-id="930DEB06">
165165
<video autoplay data-shaka-player id="video" style="width:100%;height:100%">
166166
<!-- Try this first -->
167167
<source src="https://storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd"/>

0 commit comments

Comments
 (0)