Explorar el Código

Change messageString to msgString in _requestRecordingToken

#1730
j8
Sergio Garcia Murillo hace 8 años
padre
commit
a97d02e0fd
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      modules/UI/recording/Recording.js

+ 2
- 2
modules/UI/recording/Recording.js Ver fichero

@@ -133,7 +133,7 @@ function _requestLiveStreamId() {
133 133
  */
134 134
 function _requestRecordingToken() {
135 135
     let titleKey = "dialog.recordingToken";
136
-    let messageString = (
136
+    let msgString = (
137 137
         `<input name="recordingToken" type="text"
138 138
                 data-i18n="[placeholder]dialog.token"
139 139
                 class="input-control"
@@ -142,7 +142,7 @@ function _requestRecordingToken() {
142 142
     return new Promise(function (resolve, reject) {
143 143
         dialog = APP.UI.messageHandler.openTwoButtonDialog({
144 144
             titleKey,
145
-            messageString,
145
+            msgString,
146 146
             leftButtonKey: 'dialog.Save',
147 147
             submitFunction: function (e, v, m, f) {
148 148
                 if (v && f.recordingToken) {

Loading…
Cancelar
Guardar