Skip to content

Commit

Permalink
Init.
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Jan 14, 2025
1 parent a3ea77e commit 94d514c
Show file tree
Hide file tree
Showing 9 changed files with 719 additions and 282 deletions.
2 changes: 1 addition & 1 deletion build/cjs/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/esm/index.mjs

Large diffs are not rendered by default.

647 changes: 374 additions & 273 deletions demo/index.html

Large diffs are not rendered by default.

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": "14.1.9",
"version": "14.2.0",
"main": "build/cjs/index.js",
"module": "build/esm/index.mjs",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion published/14.1.9/index.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions src/Gleap.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ class Gleap {
if (tourId && tourId.length > 0) {
var tourDelay = parseInt(urlParams.get("gleap_tour_delay"));
if (isNaN(tourDelay)) {
tourDelay = 4;
tourDelay = 2;
}

setTimeout(() => {
Expand Down Expand Up @@ -1174,7 +1174,8 @@ class Gleap {
if (tourData) {
GleapProductTours.getInstance().startWithConfig(
tourData.tourId,
tourData.tourData
tourData.tourData,
2000
);
}
}
Expand Down
Loading

0 comments on commit 94d514c

Please sign in to comment.