Skip to content

Commit ef60f2a

Browse files
committed
v13.7.3
1 parent ba4bbf9 commit ef60f2a

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

build/cjs/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/esm/index.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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": "13.7.2",
3+
"version": "13.7.3",
44
"main": "build/cjs/index.js",
55
"module": "build/esm/index.mjs",
66
"exports": {

published/13.7.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/GleapProductTours.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,11 @@ export default class GleapProductTours {
100100
function onDocumentClick(evnt) {
101101
var gleapTourPopover = document.querySelector('.gleap-tour-popover');
102102
if (!gleapTourPopover.contains(evnt.target)) {
103+
const stepIndex = gleapTourObj.getActiveIndex();
104+
const step = steps[stepIndex];
105+
103106
const element = gleapTourObj.getActiveElement();
104-
if (element && element.tagName === 'INPUT') {
107+
if ((element && element.tagName === 'INPUT') || step.mode === "INPUT") {
105108
// Prevent.
106109
} else {
107110
gleapTourObj.moveNext();

0 commit comments

Comments
 (0)