[open-ils-commits] [GIT] Evergreen ILS branch rel_2_0 updated. 309b6ef4910e8e31fc315f914b6f2414a7b701f6
Evergreen Git
git at git.evergreen-ils.org
Fri Nov 18 10:40:58 EST 2011
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_0 has been updated
via 309b6ef4910e8e31fc315f914b6f2414a7b701f6 (commit)
from e054848701fe49df001847e740eecd24aa149a17 (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 309b6ef4910e8e31fc315f914b6f2414a7b701f6
Author: James Fournie <jfournie at sitka.bclibraries.ca>
Date: Tue Nov 15 17:06:48 2011 -0800
Quasi-backport fixes a bug whereby the copy browser does not
automatically refresh after adding volumes. This bug is fixed
in future versions by git commit bcd6f20b but the bugfix itself
is not noted in that commit message.
Signed-off-by: James Fournie <jfournie at sitka.bclibraries.ca>
Signed-off-by: Jason Etheridge <jason at esilibrary.com>
diff --git a/Open-ILS/xul/staff_client/server/cat/copy_browser.js b/Open-ILS/xul/staff_client/server/cat/copy_browser.js
index 4be4ca0..8f55d8c 100644
--- a/Open-ILS/xul/staff_client/server/cat/copy_browser.js
+++ b/Open-ILS/xul/staff_client/server/cat/copy_browser.js
@@ -295,7 +295,7 @@ cat.copy_browser.prototype = {
'doc_id' : obj.docid,
'ou_ids' : list,
'copy_shortcut' : copy_shortcut,
- 'refresh' : function() { obj.refresh_list(); }
+ 'onrefresh' : function() { obj.refresh_list(); }
}
);
} catch(E) {
@@ -539,7 +539,7 @@ cat.copy_browser.prototype = {
var w = xulG.new_tab(
window.xulG.url_prefix(urls.XUL_VOLUME_COPY_CREATOR),
{ 'tab_name' : title },
- { 'doc_id' : obj.docid, 'ou_ids' : list, 'refresh' : function() { obj.refresh_list(); } }
+ { 'doc_id' : obj.docid, 'ou_ids' : list, 'onrefresh' : function() { obj.refresh_list(); } }
);
} catch(E) {
-----------------------------------------------------------------------
Summary of changes:
.../xul/staff_client/server/cat/copy_browser.js | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list