[
https://issues.apache.org/jira/browse/WICKET-7179?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18070137#comment-18070137
]
ASF GitHub Bot commented on WICKET-7179:
----------------------------------------
martin-g commented on code in PR #1412:
URL: https://github.com/apache/wicket/pull/1412#discussion_r3018153093
##########
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:
I should have checked the diff before my comment!
The V4 is not in use yet! This is the reason why the tests pass.
> add support for jQuery 4.0.0
> ----------------------------
>
> Key: WICKET-7179
> URL: https://issues.apache.org/jira/browse/WICKET-7179
> Project: Wicket
> Issue Type: Improvement
> Reporter: Ernesto Reinaldo Barreiro
> Assignee: Ernesto Reinaldo Barreiro
> Priority: Major
>
> add support for jQuery 4.0.0
--
This message was sent by Atlassian Jira
(v8.20.10#820010)