Skip to content

Commit 08ea8f2

Browse files
committed
v6.8.1
1 parent 6b16b4a commit 08ea8f2

18 files changed

+78
-22
lines changed

build/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/index.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/bb.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1626,7 +1626,7 @@ textarea.bb-feedback-required {
16261626
}
16271627

16281628
.bb-capture-editor-notrecording .bb-capture-editor-borderlayer {
1629-
background-color: rgba(0, 0, 0, 0.5);
1629+
background-color: rgba(0, 0, 0, 0.8);
16301630
}
16311631

16321632
.bb-capture-editor-recording .bb-capture-dismiss {

demo/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ <h2>Gleap SDK for the Web</h2>
169169
>In less than a minute you can add our Gleap SDK to your App or WebApp.
170170
Install our SDK, build and run. A piece of cake.</span
171171
>
172+
<div id="rand"></div>
172173
</div>
173174
<!-- index.js as found in build/index.js -->
174175
<script src="index.js"></script>

demo/main.js

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
11
const Gleap = window.Gleap;
22

33
// Gleap.setApiUrl("http://localhost:9000");
4-
Gleap.initialize("Y0ASDsS3Se1PJG1aYNIblrFMMX4zGgig");
4+
Gleap.initialize("ogWhNhuiZcGWrva5nlDS8l7a78OfaLlV");
55
Gleap.identify(123, {
66
email: "lukas@gle.cooooooa",
77
name: "Lukas",
88
});
9+
10+
/*function makeid(length) {
11+
var result = '';
12+
var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
13+
var charactersLength = characters.length;
14+
for ( var i = 0; i < length; i++ ) {
15+
result += characters.charAt(Math.floor(Math.random() *
16+
charactersLength));
17+
}
18+
return result;
19+
}
20+
21+
setInterval(() => {
22+
document.getElementById("rand").innerText = makeid(1000);
23+
}, 1);*/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gleap",
3-
"version": "6.8.0",
3+
"version": "6.8.1",
44
"main": "build/index.js",
55
"scripts": {
66
"start": "webpack serve",

published/6.8.1/appwidget.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

published/6.8.1/index.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

published/6.8.1/index.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

published/latest/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)