Merge pull request #1072 from jitsi/fix_stop_rec_dialog
Make the stop recording dialog work again
This commit is contained in:
commit
bbf68a97bb
|
@ -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) {
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue