Skip to content

Commit

Permalink
Merge branch 'pr/1700' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Laské committed Jan 14, 2025
2 parents 3c14f0d + 338cf47 commit d54706c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- In the activity of food chain, the picture of frog shows incomplete #1191
- Unusual Draw in Chess Activity #1678
- Pressing the start button in ColorMyWorld activity immediately shows "Congratulations! You finished!" #1691
- Broken dialog box on first screen tutorial #1418

## [1.8.0] - 2024-04-10
### Added
Expand Down
13 changes: 7 additions & 6 deletions lib/tutorial.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ define([], function () {
var gotoStep = undefined;
tutorial.activityId = null;
tour = introJs().setOptions({
tooltipClass: 'customTooltip',
prevLabel: prevString,
nextLabel: nextString,
exitOnOverlayClick: false,
nextToDone: false,
showBullets: false
tooltipClass: 'customTooltip',
prevLabel: prevString,
nextLabel: nextString,
exitOnOverlayClick: false,
nextToDone: false,
showBullets: false,
disableInteraction: true,
});
tour.onafterchange(function() {
var color = this._introItems[this._currentStep].iconColor;
Expand Down

0 comments on commit d54706c

Please sign in to comment.