From 11b6f7cdfbf87df509fc2d6ce5685843ac776f0c Mon Sep 17 00:00:00 2001 From: phasefx Date: Fri, 4 Aug 2006 07:40:47 +0000 Subject: [PATCH] show callnumber dropdown even if no callnumbers in marc git-svn-id: svn://svn.open-ils.org/ILS/trunk@5285 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/cat/volume_copy_creator.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/cat/volume_copy_creator.js b/Open-ILS/xul/staff_client/server/cat/volume_copy_creator.js index a3480e2bde..46b2bc2255 100644 --- a/Open-ILS/xul/staff_client/server/cat/volume_copy_creator.js +++ b/Open-ILS/xul/staff_client/server/cat/volume_copy_creator.js @@ -42,7 +42,7 @@ function my_init() { } catch(E) { cn_blob = []; } - if ((!g.copy_shortcut) && (cn_blob.length > 0)) { + if ((!g.copy_shortcut)) { var hbox = document.getElementById('marc_cn'); var ml = util.widgets.make_menulist( util.functional.map_list( @@ -64,6 +64,7 @@ function my_init() { ).reverse() ); hbox.appendChild(ml); ml.setAttribute('editable','true'); + ml.setAttribute('width', '200'); var btn = document.createElement('button'); btn.setAttribute('label','Apply'); btn.setAttribute('accesskey','A'); -- 2.11.0