e5fc94f6091435242cfa794857c78da5140202f3
chmalee
  Thu Aug 29 15:43:29 2024 -0700
Add jquery-migrate for new jquery version

diff --git src/hg/lib/cart.c src/hg/lib/cart.c
index 4b998ec..2d7cf6b 100644
--- src/hg/lib/cart.c
+++ src/hg/lib/cart.c
@@ -2612,31 +2612,31 @@
 /* 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-1.4.1.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. */
 {