Skip to content

Commit

Permalink
Update jQuery to 3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Apr 15, 2024
1 parent 1fc4a02 commit 6a44d30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ public enum HtmlDxDataGridOption
/// <summary>
/// Version of <see href="https://jquery.com">jQuery</see> which should be used.
/// This version needs to match the version required by the selected <see cref="DevExtremeVersion"/>.
/// Default value is <c>3.7.0</c>.
/// Default value is <c>3.7.1</c>.
/// </summary>
JQueryVersion,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
List<HtmlDxDataGridColumnDescription> additionalColumns = ViewBagHelper.ValueOrDefault(ViewBag.AdditionalColumns, new List<HtmlDxDataGridColumnDescription>());
string jQueryLocation = ViewBagHelper.ValueOrDefault(ViewBag.JQueryLocation, "https://ajax.aspnetcdn.com/ajax/jquery/").Trim();
jQueryLocation = jQueryLocation.WithEnding("/");
string jQueryVersion = ViewBagHelper.ValueOrDefault(ViewBag.JQueryVersion, "3.7.0").Trim();
string jQueryVersion = ViewBagHelper.ValueOrDefault(ViewBag.JQueryVersion, "3.7.1").Trim();
string excelJsLocation = ViewBagHelper.ValueOrDefault(ViewBag.ExcelJsLocation, "https://cdnjs.cloudflare.com/ajax/libs/exceljs/").Trim();
excelJsLocation = excelJsLocation.WithEnding("/");
string excelJsVersion = ViewBagHelper.ValueOrDefault(ViewBag.ExcelJsVersion, "4.4.0").Trim();
Expand Down

0 comments on commit 6a44d30

Please sign in to comment.