Quellcode durchsuchen

fix(Recording): broken stop recording dialog

master
paweldomas vor 8 Jahren
Ursprung
Commit
739e2bd35a
2 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 1
    1
      modules/UI/recording/Recording.js
  2. 1
    0
      modules/UI/util/MessageHandler.js

+ 1
- 1
modules/UI/recording/Recording.js Datei anzeigen

170
     return new Promise(function (resolve, reject) {
170
     return new Promise(function (resolve, reject) {
171
         dialog = APP.UI.messageHandler.openTwoButtonDialog({
171
         dialog = APP.UI.messageHandler.openTwoButtonDialog({
172
             titleKey: title,
172
             titleKey: title,
173
-            messageKey: message,
173
+            msgKey: message,
174
             leftButtonKey: buttonKey,
174
             leftButtonKey: buttonKey,
175
             submitFunction: function(e,v) {
175
             submitFunction: function(e,v) {
176
                 if (v) {
176
                 if (v) {

+ 1
- 0
modules/UI/util/MessageHandler.js Datei anzeigen

59
      * parameter and the second is Cancel.
59
      * parameter and the second is Cancel.
60
      *
60
      *
61
      * @param titleKey the key for the title of the message
61
      * @param titleKey the key for the title of the message
62
+     * @param msgKey the key for the message
62
      * @param msgString the text of the message
63
      * @param msgString the text of the message
63
      * @param persistent boolean value which determines whether the message is
64
      * @param persistent boolean value which determines whether the message is
64
      *        persistent or not
65
      *        persistent or not

Laden…
Abbrechen
Speichern