now use eval() for GetEntries*Fold*, and much better fix for bug where next/prev was breaking with inputs with spaces in names -- dont need those inputs anyway, JUST pass next or prev and the rest comes from pa_user_state now

This commit is contained in:
2022-01-29 18:53:30 +11:00
parent 8e82271e2a
commit 7a17d91779
2 changed files with 8 additions and 26 deletions

View File

@@ -1,11 +1,3 @@
// this is needed as serliazeArray doesnt handle spaces in values
// so we wrap it in this func
$.fn.serializeAndEncode = function() {
return $.map(this.serializeArray(), function(val) {
return [val.name, encodeURIComponent(val.value)].join('=');
}).join('&');
};
// grab all selected thumbnails and return a <div> containing the thumbnails
// with extra yr and date attached as attributes so we can set the default
// dir name for a move directory - not used in del, but no harm to include them