Browse Source

Fixes undefined 'messageHandler' error.

j8
paweldomas 10 years ago
parent
commit
06494cf821
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      app.js

+ 2
- 2
app.js View File

157
 
157
 
158
     // Close authentication dialog if opened
158
     // Close authentication dialog if opened
159
     if (authDialog) {
159
     if (authDialog) {
160
-        messageHandler.closeDialog();
160
+        UI.messageHandler.closeDialog();
161
         authDialog = null;
161
         authDialog = null;
162
     }
162
     }
163
     // Clear retry interval, so that we don't call 'doJoinAfterFocus' twice
163
     // Clear retry interval, so that we don't call 'doJoinAfterFocus' twice
1013
 
1013
 
1014
     }
1014
     }
1015
 
1015
 
1016
-    messageHandler.openDialog(
1016
+    UI.messageHandler.openDialog(
1017
         "Session Terminated",
1017
         "Session Terminated",
1018
         "You hung up the call",
1018
         "You hung up the call",
1019
         true,
1019
         true,

Loading…
Cancel
Save