From 86a4b458c6f04a259c5a8cfa9b0ce3d7140f533c Mon Sep 17 00:00:00 2001 From: dbs Date: Fri, 27 Mar 2009 23:07:30 +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@12709 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