|
@@ -51,6 +51,9 @@ function _requestLiveStreamId() {
|
51
|
51
|
const streamIdRequired
|
52
|
52
|
= APP.translation.generateTranslationHTML(
|
53
|
53
|
"liveStreaming.streamIdRequired");
|
|
54
|
+ const streamIdHelp
|
|
55
|
+ = APP.translation.generateTranslationHTML(
|
|
56
|
+ "liveStreaming.streamIdHelp");
|
54
|
57
|
|
55
|
58
|
return new Promise(function (resolve, reject) {
|
56
|
59
|
dialog = APP.UI.messageHandler.openDialogWithStates({
|
|
@@ -60,7 +63,11 @@ function _requestLiveStreamId() {
|
60
|
63
|
`<input class="input-control"
|
61
|
64
|
name="streamId" type="text"
|
62
|
65
|
data-i18n="[placeholder]dialog.streamKey"
|
63
|
|
- autofocus>`,
|
|
66
|
+ autofocus><div style="text-align: right">
|
|
67
|
+ <a class="helper-link" target="_new"
|
|
68
|
+ href="${interfaceConfig.LIVE_STREAMING_HELP_LINK}">`
|
|
69
|
+ + streamIdHelp
|
|
70
|
+ + `</a></div>`,
|
64
|
71
|
persistent: false,
|
65
|
72
|
buttons: [
|
66
|
73
|
{title: cancelButton, value: false},
|