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/cart.c src/hg/lib/cart.c
index 2d7cf6b..4857e99 100644
--- src/hg/lib/cart.c
+++ src/hg/lib/cart.c
@@ -2612,31 +2612,30 @@
 /* Write HTML header and put in normal error handler. */
 {
 pushWarnHandler(htmlVaWarn);
 htmStart(stdout, title);
 didCartHtmlStart = TRUE;
 }
 
 static void cartVaWebStartMaybeHeader(struct cart *cart, char *db, boolean withHttpHeader,
                                       char *format, va_list args)
 /* Print out optional Content-Type and pretty wrapper around things when working from cart. */
 {
 pushWarnHandler(htmlVaWarn);
 webStartWrapper(cart, trackHubSkipHubName(db), format, args, withHttpHeader, FALSE);
 inWeb = TRUE;
 jsIncludeFile("jquery.js", NULL);
-jsIncludeFile("jquery-migrate-3.5.2.js", NULL);
 jsIncludeFile("utils.js", NULL);
 jsIncludeFile("ajax.js", NULL);
 }
 
 void cartVaWebStart(struct cart *cart, char *db, char *format, va_list args)
 /* Print out pretty wrapper around things when working
  * from cart. */
 {
 cartVaWebStartMaybeHeader(cart, db, FALSE, format, args);
 }
 
 void cartWebStart(struct cart *cart, char *db, char *format, ...)
 /* Print out pretty wrapper around things when working
  * from cart. */
 {