From 035aff429619cb67c434c253f0e9ea99fe5bb31e Mon Sep 17 00:00:00 2001 From: dbs Date: Fri, 27 Mar 2009 23:08:10 +0000 Subject: [PATCH] Backport 12486 from trunk: decrement a counter for the chunk size git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_4_0@12710 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/chrome/content/util/exec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/chrome/content/util/exec.js b/Open-ILS/xul/staff_client/chrome/content/util/exec.js index 702d1ba18a..64e91d236e 100644 --- a/Open-ILS/xul/staff_client/chrome/content/util/exec.js +++ b/Open-ILS/xul/staff_client/chrome/content/util/exec.js @@ -17,7 +17,7 @@ util.exec.prototype = { function() { var i = obj.chunk_size; while (funcs.length > 0 && i > 0) { - funcs.shift()(); + funcs.shift()(); i--; } }, interval -- 2.11.0