Skip to content

Commit 75585bf

Browse files
author
Igor Khomenko
committed
Merge branch 'gh-pages' of github.com:QuickBlox/quickblox-javascript-sdk into gh-pages
2 parents f4f6d43 + e1b153a commit 75585bf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

samples/webrtc/config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
};
3636

3737
/** set QBApp */
38-
var QBApp = usersQuery === 'prod' ? QBAppProd : QBAppDefault;
38+
var QBApp = usersQuery === 'qa' ? QBAppDefault : usersQuery === 'dev' ? QBAppDefault : QBAppProd;
3939

4040
var QBUsersQA = [
4141
{
@@ -185,7 +185,7 @@
185185
];
186186

187187
/** set QBUsers */
188-
var QBUsers = usersQuery === 'prod' ? QBUsersProd : usersQuery === 'dev' ? QBUsersDev : QBUsersQA;
188+
var QBUsers = usersQuery === 'qa' ? QBUsersQA : usersQuery === 'dev' ? QBUsersDev : QBUsersProd;
189189

190190
var MESSAGES = {
191191
'login': 'Login as any user on this computer and another user on another computer.',
@@ -231,4 +231,4 @@
231231
window.CONFIG = CONFIG;
232232
window.QBUsers = QBUsers;
233233
window.MESSAGES = MESSAGES;
234-
}(window));
234+
}(window));

samples/webrtc/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ <h4>Call from <strong class="j-ic_initiator"></strong></h4>
253253
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
254254
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
255255

256-
<script src="../../quickblox.js"></script>
256+
<script src="../../quickblox.min.js"></script>
257257

258258
<script src="config.js"></script>
259259
<script src="js/msgBoard.js"></script>

0 commit comments

Comments
 (0)