Aligned the MARC editor subfields to 'start' fixes long subfield display
authorLiam Whalen <lwhalen@evergreen-dev.catalogue.nrcan.gc.ca>
Tue, 1 Nov 2011 19:59:13 +0000 (15:59 -0400)
committerMike Rylander <mrylander@gmail.com>
Tue, 15 Nov 2011 20:39:49 +0000 (15:39 -0500)
When viewing a record in the MARC editor that has extremely long
entries in a subfield, the output would align in the center of the
subfield making the output hard to read.  This patch adds an
align: 'start' option to both the subfield, and the subfield code
elements in the marcSubfield function to make the subfields align in a
 more readable manner.
Signed-off-by: Liam Whalen <lwhalen@evergreen-dev.catalogue.nrcan.gc.ca>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Open-ILS/xul/staff_client/server/cat/marcedit.js

index 0d5e92a..418d0ee 100644 (file)
@@ -1051,6 +1051,7 @@ function marcSubfield (sf) {
             sf.@code,
             { value : sf.@code,
               class : 'plain marcSubfieldCode',
+              align: 'start',
               name : 'marcSubfieldCode',
               onmouseover : 'current_focus = this; getContextMenu(this, "subfield"); getTooltip(this, "subfield");',
               oncontextmenu : 'getContextMenu(this, "subfield");',
@@ -1062,6 +1063,7 @@ function marcSubfield (sf) {
             { value : sf.text(),
               name : sf.parent().@tag + ':' + sf.@code,
               class : 'plain marcSubfield', 
+              align: 'start',
               onmouseover : 'getTooltip(this, "subfield");',
               contextmenu : function (event) { getAuthorityContextMenu(event.target, sf) },
               size : new String(sf.text()).length + 2,