reiern70 commented on code in PR #1412:
URL: https://github.com/apache/wicket/pull/1412#discussion_r3023157528
##########
wicket-core/src/main/java/org/apache/wicket/resource/JQueryResourceReference.java:
##########
@@ -36,14 +36,21 @@ public class JQueryResourceReference extends
JavaScriptResourceReference
* <strong>Note</strong>: Might not work with old jQuery plugins!
*/
public static final String VERSION_3 = "jquery/jquery-3.7.1.js";
+ public static final String VERSION_4 = "jquery/jquery-4.0.0.js";
public static final JQueryResourceReference INSTANCE_3 = new
JQueryResourceReference(VERSION_3);
+ public static final JQueryResourceReference INSTANCE_4 = new
JQueryResourceReference(VERSION_4);
public static JQueryResourceReference getV3()
{
return INSTANCE_3;
}
+ public static JQueryResourceReference getV4()
Review Comment:
See
https://blog.jqueryui.com/2026/01/jquery-ui-1-14-2-released/
The new release seems to be compatible with 4.0
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]