[open-ils-commits] [GIT] Evergreen ILS branch rel_2_2 updated. 173fe017e4639016223fe788755360a4c8240a0b
Evergreen Git
git at git.evergreen-ils.org
Mon Feb 4 13:32:00 EST 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, rel_2_2 has been updated
via 173fe017e4639016223fe788755360a4c8240a0b (commit)
from 64658bb975b6fd9ca5df403e0e810219df97dbfd (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 173fe017e4639016223fe788755360a4c8240a0b
Author: Mark Cooper <markchristophercooper at gmail.com>
Date: Tue Oct 16 11:02:23 2012 -0700
LP#1067361: vandelay: batch queue deletion no longer works
Because window.location.reload can trigger before the deletions
have occurred. Simple fix (band aid?) is to make the delete
calls in sync.
Signed-off-by: Mark Cooper <markchristophercooper at gmail.com>
Signed-off-by: Kathy Lussier <klussier at masslnc.org>
Signed-off-by: Ben Shum <bshum at biblio.org>
diff --git a/Open-ILS/web/js/ui/default/vandelay/vandelay.js b/Open-ILS/web/js/ui/default/vandelay/vandelay.js
index 5d7d6a3..40b9e44 100644
--- a/Open-ILS/web/js/ui/default/vandelay/vandelay.js
+++ b/Open-ILS/web/js/ui/default/vandelay/vandelay.js
@@ -1036,7 +1036,7 @@ function vlQueueGridNextPage() {
function vlDeleteQueue(type, queueId, onload) {
fieldmapper.standardRequest(
['open-ils.vandelay', 'open-ils.vandelay.'+type+'_queue.delete'],
- { async: true,
+ { async: false,
params: [authtoken, queueId],
oncomplete: function(r) {
var resp = r.recv().content();
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/web/js/ui/default/vandelay/vandelay.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list