mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01: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 () {
|
||||
if (current_param.end != $('.date-start input[name="end"]').attr("value")) {
|
||||
current_param.end = $('.date-start input[name="end"]').attr("value");
|
||||
console.log($('.date-end 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;
|
||||
fillHistoryResult(current_param);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user