bfe42ed2f82c1f6dec44ea6dec503284e7a68abd jnavarr5 Wed May 28 15:54:21 2025 -0700 Updating hgTracks to use the new popup menu for the javascript tutorials, refs #35716 diff --git src/hg/hgTracks/hgTracks.c src/hg/hgTracks/hgTracks.c index 289ecaa21b8..035f72b289e 100644 --- src/hg/hgTracks/hgTracks.c +++ src/hg/hgTracks/hgTracks.c @@ -11493,31 +11493,31 @@ webIncludeResourceFile("jquery-ui.css"); if (enableMouseOver) webIncludeResourceFile("mouseOver.css"); if (!searching) // NOT doing search { webIncludeResourceFile("jquery.contextmenu.css"); jsIncludeFile("jquery.contextmenu.js", NULL); webIncludeResourceFile("ui.dropdownchecklist.css"); jsIncludeFile("ui.dropdownchecklist.js", NULL); jsIncludeFile("ddcl.js", NULL); if (cfgOptionBooleanDefault("showTutorial", TRUE)) { jsIncludeFile("shepherd.min.js", NULL); webIncludeResourceFile("shepherd.css"); - jsIncludeFile("hgTracksPopup.js", NULL); + jsIncludeFile("tutorialPopup.js", NULL); jsIncludeFile("basicTutorial.js",NULL); jsIncludeFile("clinicalTutorial.js",NULL); // if the user is logged in, we won't show the notification // that a tutorial is available, just leave the link in the // blue bar under "Help" if (wikiLinkUserName()) jsInline("var userLoggedIn = true;"); // if the CGI variable startTutorial=true is present (in that exact // spelling/case), immediately start the tutorial, for example // when the user clicks a link from a help page. Note that this // means it is a one time link that won't work on refresh because // the variable isn't saved onto the URL if (sameOk(cgiOptionalString("startTutorial"), "true")) { jsInline("var startTutorialOnLoad = true;");