Skip to content

Commit 6271dd9

Browse files
committed
v11.1.3
1 parent 9a8215e commit 6271dd9

File tree

6 files changed

+8
-13
lines changed

6 files changed

+8
-13
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.

demo/main.js

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
const Gleap = window.Gleap;
22

3-
//Gleap.setFrameUrl("http://0.0.0.0:3001");
4-
//Gleap.setApiUrl("http://0.0.0.0:9000");
3+
Gleap.setFrameUrl("http://0.0.0.0:3001");
4+
Gleap.setApiUrl("http://0.0.0.0:9000");
55

66
Gleap.setDisablePageTracking(true);
77

8-
Gleap.setLanguage("de");
8+
Gleap.setLanguage("en");
99

1010
Gleap.initialize("hciNpT8z64tsHATINYZjWBvbirVWCKWt");
1111

1212
/*Gleap.setUrlHandler((url, newTab) => {
1313
alert("URL: " + url + " newTab: " + newTab);
1414
});*/
15-
16-
Gleap.identify("613b5dc530aed737108f87a8", {
17-
name: "Lukas",
18-
email: "lukas@gleap.io"
19-
});

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": "11.1.2",
3+
"version": "11.1.3",
44
"main": "build/index.js",
55
"scripts": {
66
"start": "webpack serve",

published/11.1.3/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/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.

src/GleapSession.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default class GleapSession {
55
apiUrl = "https://api.gleap.io";
66
sdkKey = null;
77
updatingSession = false;
8-
useCookies = true;
8+
useCookies = false;
99
session = {
1010
gleapId: null,
1111
gleapHash: null,
@@ -166,7 +166,6 @@ export default class GleapSession {
166166
const sessionCookie = getGleapCookie(`session-${this.sdkKey}`);
167167
if (sessionCookie) {
168168
const sessionData = JSON.parse(decodeURIComponent(sessionCookie));
169-
170169
this.validateSession(sessionData);
171170
}
172171
}

0 commit comments

Comments
 (0)