Fixes logout confirmation dialog.

pull/240/head
paweldomas 10 years ago
parent 222164333b
commit 053b2d5af2
  1. 2
      lang/main.json
  2. 3
      modules/UI/toolbars/Toolbar.js

@ -153,6 +153,8 @@
"AuthMsg": "Authentication is required to create room:<br/><b>__room__ </b></br> You can either authenticate to create the room or just wait for someone else to do so.",
"Authenticate": "Authenticate",
"Cancel": "Cancel",
"logoutTitle" : "Logout",
"logoutQuestion" : "Are you sure you want to logout and stop the conference ?",
"sessTerminated": "Session Terminated",
"hungUp": "You hung up the call",
"joinAgain": "Join again",

@ -66,7 +66,8 @@ var buttonHandlers =
"toolbar_button_logout": function () {
// Ask for confirmation
messageHandler.openTwoButtonDialog(
"Logout",
"dialog.logoutTitle", "Logout",
"dialog.logoutQuestion",
"Are you sure you want to logout and stop the conference ?",
false, "Yes",
function (evt, yes) {

Loading…
Cancel
Save