Skip to content

Commit d54706c

Browse files
author
Lionel Laské
committed
Merge branch 'pr/1700' into dev
2 parents 3c14f0d + 338cf47 commit d54706c

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3838
- In the activity of food chain, the picture of frog shows incomplete #1191
3939
- Unusual Draw in Chess Activity #1678
4040
- Pressing the start button in ColorMyWorld activity immediately shows "Congratulations! You finished!" #1691
41+
- Broken dialog box on first screen tutorial #1418
4142

4243
## [1.8.0] - 2024-04-10
4344
### Added

lib/tutorial.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ define([], function () {
1818
var gotoStep = undefined;
1919
tutorial.activityId = null;
2020
tour = introJs().setOptions({
21-
tooltipClass: 'customTooltip',
22-
prevLabel: prevString,
23-
nextLabel: nextString,
24-
exitOnOverlayClick: false,
25-
nextToDone: false,
26-
showBullets: false
21+
tooltipClass: 'customTooltip',
22+
prevLabel: prevString,
23+
nextLabel: nextString,
24+
exitOnOverlayClick: false,
25+
nextToDone: false,
26+
showBullets: false,
27+
disableInteraction: true,
2728
});
2829
tour.onafterchange(function() {
2930
var color = this._introItems[this._currentStep].iconColor;

0 commit comments

Comments
 (0)