6605c847dffc7cdbdf61e3e112aaabbac01575c5
chmalee
  Thu Sep 19 13:38:41 2024 -0700
Remove jquery-migrate helper scripts and other files in preparation for merge to master

diff --git src/hg/lib/web.c src/hg/lib/web.c
index 62b7425..569e44f 100644
--- src/hg/lib/web.c
+++ src/hg/lib/web.c
@@ -1492,31 +1492,30 @@
 char *menuStr, buf[4096], uiVars[128];
 FILE *fd;
 char *navBarFile = "inc/globalNavBar.inc";
 struct stat statBuf;
 char *scriptName = cgiScriptName();
 if (cart)
     safef(uiVars, sizeof(uiVars), "%s=%s", cartSessionVarName(), cartSessionId(cart));
 else
     uiVars[0] = 0;
 
 if(docRoot == NULL)
     // tolerate missing docRoot (i.e. don't bother with menu when running from command line)
     return NULL;
 
 jsIncludeFile("jquery.js", NULL);
-jsIncludeFile("jquery-migrate-3.5.2.js", NULL);
 jsIncludeFile("jquery.plugins.js", NULL);
 jsIncludeFile("utils.js", NULL);
 webIncludeResourceFile("nice_menu.css");
 
 webIncludeLocalJs();
 
 // Read in menu bar html
 safef(buf, sizeof(buf), "%s/%s", docRoot, navBarFile);
 fd = mustOpen(buf, "r");
 fstat(fileno(fd), &statBuf);
 int len = statBuf.st_size;
 menuStr = needMem(len + 1);
 mustRead(fd, menuStr, statBuf.st_size);
 menuStr[len] = 0;
 carefulClose(&fd);