From 70ead1a19d4105e6e0c60c147acca41d04f62e9d Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Tue, 8 Mar 2011 14:57:07 -0500 Subject: [PATCH] have holdings maintenance refresh correctly after using the unified interface --- Open-ILS/xul/staff_client/server/cat/copy_browser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 e8d1644968..a66c9c49b3 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) { -- 2.11.0