Merge pull request #1072 from jitsi/fix_stop_rec_dialog

Make the stop recording dialog work again
This commit is contained in:
Дамян Минков 2016-10-26 16:14:28 -05:00 committed by GitHub
commit bbf68a97bb
2 changed files with 2 additions and 1 deletions

View File

@ -170,7 +170,7 @@ function _showStopRecordingPrompt (recordingType) {
return new Promise(function (resolve, reject) { return new Promise(function (resolve, reject) {
dialog = APP.UI.messageHandler.openTwoButtonDialog({ dialog = APP.UI.messageHandler.openTwoButtonDialog({
titleKey: title, titleKey: title,
messageKey: message, msgKey: message,
leftButtonKey: buttonKey, leftButtonKey: buttonKey,
submitFunction: function(e,v) { submitFunction: function(e,v) {
if (v) { if (v) {

View File

@ -59,6 +59,7 @@ var messageHandler = {
* parameter and the second is Cancel. * parameter and the second is Cancel.
* *
* @param titleKey the key for the title of the message * @param titleKey the key for the title of the message
* @param msgKey the key for the message
* @param msgString the text of the message * @param msgString the text of the message
* @param persistent boolean value which determines whether the message is * @param persistent boolean value which determines whether the message is
* persistent or not * persistent or not