Skip to content

Commit

Permalink
v6.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Jan 31, 2022
1 parent b97b0cc commit ae88acf
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions demo/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
const Gleap = window.Gleap;

Gleap.setApiUrl("http://localhost:9000");
Gleap.initialize("ogWhNhuiZcGWrva5nlDS8l7a78OfaLlV");
// Gleap.setApiUrl("http://localhost:9000");
Gleap.initialize("Y0ASDsS3Se1PJG1aYNIblrFMMX4zGgig");
Gleap.identify(123, {
email: "[email protected]",
name: "XOXO",
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gleap",
"version": "6.7.2",
"version": "6.7.3",
"main": "build/index.js",
"scripts": {
"start": "webpack serve",
Expand Down
1 change: 1 addition & 0 deletions published/6.7.3/appwidget.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions published/6.7.3/index.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions published/6.7.3/index.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion published/latest/index.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/Gleap.js
Original file line number Diff line number Diff line change
Expand Up @@ -923,6 +923,7 @@ class Gleap {
emailFormItem &&
!(sessionInstance.session && sessionInstance.session.email)
) {
emailFormItem.hideOnDefaultSet = false;
newFormArray.push(emailFormItem);
}

Expand All @@ -947,6 +948,7 @@ class Gleap {
sessionInstance.session &&
sessionInstance.session.email
) {
emailFormItem.hideOnDefaultSet = true;
emailFormItem.defaultValue = sessionInstance.session.email;
emailFormItem.page =
feedbackOptions.form[feedbackOptions.form.length - 1].page;
Expand Down

0 comments on commit ae88acf

Please sign in to comment.