Browse Source

Merge pull request #1072 from jitsi/fix_stop_rec_dialog

Make the stop recording dialog work again
master
Дамян Минков 8 years ago
parent
commit
bbf68a97bb
2 changed files with 2 additions and 1 deletions
  1. 1
    1
      modules/UI/recording/Recording.js
  2. 1
    0
      modules/UI/util/MessageHandler.js

+ 1
- 1
modules/UI/recording/Recording.js View File

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 View File

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

Loading…
Cancel
Save