From 11536e069876efbadb337eed2be4581cff26c0ac Mon Sep 17 00:00:00 2001 From: t-aswath Date: Fri, 10 Jan 2025 08:33:39 +0530 Subject: [PATCH 1/3] Fix: Intraction with sign up breaks sign up tutorial --- lib/tutorial.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/tutorial.js b/lib/tutorial.js index 3d875209fe..3162de1d0d 100644 --- a/lib/tutorial.js +++ b/lib/tutorial.js @@ -23,7 +23,8 @@ define([], function () { nextLabel: nextString, exitOnOverlayClick: false, nextToDone: false, - showBullets: false + showBullets: false, + disableInteraction: true, }); tour.onafterchange(function() { var color = this._introItems[this._currentStep].iconColor; From bb204231002ef0acbe24736adf4cc3952c16635a Mon Sep 17 00:00:00 2001 From: t-aswath <119417646+t-aswath@users.noreply.github.com> Date: Mon, 13 Jan 2025 10:00:23 +0530 Subject: [PATCH 2/3] Indentation fix --- lib/tutorial.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/tutorial.js b/lib/tutorial.js index 3162de1d0d..9a76b97eed 100644 --- a/lib/tutorial.js +++ b/lib/tutorial.js @@ -18,13 +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, - disableInteraction: true, + tooltipClass: 'customTooltip', + prevLabel: prevString, + nextLabel: nextString, + exitOnOverlayClick: false, + nextToDone: false, + showBullets: false, + disableInteraction: true, }); tour.onafterchange(function() { var color = this._introItems[this._currentStep].iconColor; From 338cf47cb64c742833a110cc2dc44da199104404 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lionel=20Lask=C3=A9?= Date: Tue, 14 Jan 2025 22:32:53 +0100 Subject: [PATCH 3/3] Update CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b81be0b7a6..5999d0d911 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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