mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-11 19:23:01 +02:00
related to #1465 fixed date_end not recognized
This commit is contained in:
committed by
plegall
parent
d0bf5cd1f2
commit
2db6c52f3d
@@ -36,8 +36,10 @@ $(document).ready(() => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
$('.date-end').on("change", function () {
|
$('.date-end').on("change", function () {
|
||||||
if (current_param.end != $('.date-start input[name="end"]').attr("value")) {
|
console.log($('.date-end input[name="end"]').attr("value"));
|
||||||
current_param.end = $('.date-start input[name="end"]').attr("value");
|
if (current_param.end != $('.date-end input[name="end"]').attr("value")) {
|
||||||
|
console.log("HERE");
|
||||||
|
current_param.end = $('.date-end input[name="end"]').attr("value");
|
||||||
current_param.pageNumber = 0;
|
current_param.pageNumber = 0;
|
||||||
fillHistoryResult(current_param);
|
fillHistoryResult(current_param);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user