Skip to content

Commit 5d667bc

Browse files
chat sample fixed for live demo
1 parent 10d107b commit 5d667bc

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

samples/chat/css/main.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
--search-height: 36px;
3131
--toolbar-height: 49px;
3232
--sidebar-width: 374px;
33+
--cash-tester-color: orange;
3334
}
3435

3536
* {

samples/chat/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
66
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
78
<title>QuickBlox chat code sample</title>
89
<link rel="shortcut icon" href="https://quickblox.com/favicon.ico">
910

@@ -131,7 +132,7 @@ <h2>Info</h2>
131132

132133
<div class="dashboard">
133134
<div class="dashboard_center copyright-2020-pow ">
134-
<samp style="padding-right: 6px;">Copyright © 2020 Powered by QuickBlox. All rights reserved.</samp>
135+
<samp style="padding-right: 6px;">Copyright © 2020 Powered by QuickBlox. All rights reserved. Sample version 1.0.0.</samp>
135136

136137
</div>
137138

samples/chat/js/app.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ App.prototype.init = function (config) {
4141
// Step 1. QB SDK initialization.
4242
QB = _.clone(qbConnectService.qb);
4343
QB.init(config.credentials.appId, config.credentials.authKey, config.credentials.authSecret, config.appConfig);
44+
console.log('QB version: ', QB.version, ' build number: ', QB.buildNumber, ' sample version: 1.0.0');
4445
};
4546

4647
App.prototype.renderDashboard = function (activeTabName) {

0 commit comments

Comments
 (0)