From: phasefx Date: Fri, 4 Aug 2006 07:40:47 +0000 (+0000) Subject: show callnumber dropdown even if no callnumbers in marc X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=11b6f7cdfbf87df509fc2d6ce5685843ac776f0c;p=evergreen%2Fpines.git 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 --- 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');