diff --git a/BUGs b/BUGs index 04990d7..2313cc4 100644 --- a/BUGs +++ b/BUGs @@ -1,6 +1,5 @@ -### Next: 67 +### Next: 68 BUG-56: when making a viewing list of AI:mich, (any search?) and going past the page_size, it gets the wrong data from the DB for the 'next' entry BUG-60: entries per page (in folders view) ignores pagesize, and this also contributes to BUG-56 I think BUG-61: in Fullscreen mode and next/prev occasionally dropped out of FS this is just another consequence of going beyond Pagesize, when we get new entries from DB, it loses FS flag -BUG-67: seem to have broken rotations from viewer? diff --git a/internal/js/view_transform.js b/internal/js/view_transform.js index cb3a8ae..c8a7283 100644 --- a/internal/js/view_transform.js +++ b/internal/js/view_transform.js @@ -30,8 +30,7 @@ function CheckTransformJob(id,job_id) // to finish function Transform(amt) { - id=$('#current').val() - post_data = '&amt='+amt+'&id='+id + post_data = '&amt='+amt+'&id='+current // send /transform for this image, grayscale the thumbmail, add color spinning wheel overlay, and start checking for job end - $.ajax({ type: 'POST', data: post_data, url: '/transform', success: function(data) { grayscale=1; throbber=1; DrawImg(); CheckTransformJob(id,data.job_id); return false; } }) + $.ajax({ type: 'POST', data: post_data, url: '/transform', success: function(data) { grayscale=1; throbber=1; DrawImg(); CheckTransformJob(current,data.job_id); return false; } }) }