From 1839b4447b869a65769cd7fba6f8eb2ed22c47e1 Mon Sep 17 00:00:00 2001 From: Thomas Berezansky Date: Mon, 11 Jun 2012 09:26:17 -0400 Subject: [PATCH] Vandelay: Update Current Type/ID on queue retrieve Because other parts of the javascript need those values. Signed-off-by: Thomas Berezansky Signed-off-by: Lebbeous Fogle-Weekley --- Open-ILS/web/js/ui/default/vandelay/vandelay.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Open-ILS/web/js/ui/default/vandelay/vandelay.js b/Open-ILS/web/js/ui/default/vandelay/vandelay.js index 9988eb20a4..5b959fc695 100644 --- a/Open-ILS/web/js/ui/default/vandelay/vandelay.js +++ b/Open-ILS/web/js/ui/default/vandelay/vandelay.js @@ -498,7 +498,9 @@ function retrieveQueuedRecords(type, queueId, onload, doExport) { selectableGridRecords = {}; if(!type) type = currentType; + else currentType = type; if(!queueId) queueId = currentQueueId; + else currentQueueId = queueId; if(!onload) onload = handleRetrieveRecords; var method = 'open-ils.vandelay.'+type+'_queue.records.retrieve'; -- 2.43.2