Skip to content

Commit

Permalink
v6.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Feb 2, 2022
1 parent 1f400f7 commit a829536
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 5 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion demo/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ const Gleap = window.Gleap;
// Gleap.setApiUrl("http://localhost:9000");
Gleap.initialize("Y0ASDsS3Se1PJG1aYNIblrFMMX4zGgig");
Gleap.identify(123, {
email: "[email protected]",
email: "[email protected]",
name: "Lukas",
});
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.6",
"version": "6.7.7",
"main": "build/index.js",
"scripts": {
"start": "webpack serve",
Expand Down
1 change: 1 addition & 0 deletions published/6.7.7/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.7/index.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions published/6.7.7/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: 1 addition & 1 deletion src/FeedbackForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ export const hookForm = function (formOptions, submitForm, overrideLanguage) {
}
const currentPage = parseInt(formInput.getAttribute("bb-form-page"));
if (formItem.type === "text") {
if (formItem.remember) {
if (formItem.remember && !(formItem.defaultValue && formItem.defaultValue.length > 0)) {
try {
const rememberedValue = localStorage.getItem(
`bb-remember-${formItem.name}`
Expand Down

0 comments on commit a829536

Please sign in to comment.