7ebf7f76fdf869ed56d48f1b126114c6c7040ab6
lrnassar
  Wed Oct 23 13:48:29 2024 -0700
Tweaking the wording of the message, refs #34604

diff --git src/hg/js/hgTracks.js src/hg/js/hgTracks.js
index 90776a9..a25bc8c 100644
--- src/hg/js/hgTracks.js
+++ src/hg/js/hgTracks.js
@@ -5815,31 +5815,32 @@
         // show a tutorial page if this is a new user
         if (typeof tour !== 'undefined' && tour) {
             setupSteps();
             if (typeof startTutorialOnLoad !== 'undefined' && startTutorialOnLoad) {
                 tour.start();
             }
             let lsKey = "hgTracks_hideTutorial";
             let isUserLoggedIn = (typeof userLoggedIn !== 'undefined' && userLoggedIn === true);
             let hideTutorial = localStorage.getItem(lsKey);
             let tutMsgKey = "hgTracks_tutMsgCount";
             let tmp = localStorage.getItem(tutMsgKey), tutMsgCount = 0;
             if (tmp !== null) {tutMsgCount = parseInt(tmp);}
             // if the user is not logged in and they have not already gone through the
             // tutorial
             if (!isUserLoggedIn && !hideTutorial && tutMsgCount < 5) {
-                let msg = "New to the Genome Browser? A 3-minute introduction is available in the menu at the top of the screen under 'Help > Interactive Tutorial' or here: " +
+                let msg = "New to the Genome Browser? See our short (2-3 minute) guided tutorial. " +
+                    "All tutorials can be found in the top blue bar menu under <b>Help</b> > <b>Interactive Tutorial</b>.<br>" +
                     "<button id='showTutorialLink' href=\"#showTutorial\">Start tutorial</button>";
                 notifBoxSetup("hgTracks", "hideTutorial", msg, true);
                 notifBoxShow("hgTracks", "hideTutorial");
                 localStorage.setItem("hgTracks_tutMsgCount", ++tutMsgCount);
                 $("#showTutorialLink").on("click", function() {
                     $("#hgTracks_hideTutorialnotifyHide").trigger("click");
                     tour.start();
                 });
             }
             // allow user to bring the tutorial up under the help menu whether they've seen
             // it or not
             let tutorialLinkMenuItem = document.createElement("li");
             tutorialLinkMenuItem.id = "hgTracksHelpTutorialMenuItem";
             tutorialLinkMenuItem.innerHTML = "<a id='hgTracksHelpTutorialLink' href='#showTutorial'>" +
                 "Interactive Tutorial</a>";