From: dbs Date: Fri, 27 Mar 2009 23:08:10 +0000 (+0000) Subject: Backport 12486 from trunk: decrement a counter for the chunk size X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=035aff429619cb67c434c253f0e9ea99fe5bb31e;p=Evergreen.git 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 --- 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