From: dbs Date: Mon, 1 Jun 2009 03:54:51 +0000 (+0000) Subject: Display incomplete holdings, not missing volumes twice X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=899e3f3e1bd6dfb512b55a4f9fc088bee6aa60e6;p=evergreen%2Ftadl.git Display incomplete holdings, not missing volumes twice Improve display of holdings with 100% wide table git-svn-id: svn://svn.open-ils.org/ILS/trunk@13272 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/opac/skin/default/js/rdetail.js b/Open-ILS/web/opac/skin/default/js/rdetail.js index 2c1d0cb8a2..12572df7f7 100644 --- a/Open-ILS/web/opac/skin/default/js/rdetail.js +++ b/Open-ILS/web/opac/skin/default/js/rdetail.js @@ -254,7 +254,7 @@ function _holdingsDrawMFHD(holdings, entryNum) { return null; } - dojo.place("
" + + dojo.place("
" + dojo.string.substitute(opac_strings.HOLDINGS_TABLE_CAPTION, [holdings.location()]) + "
", "rdetail_details_table", "after" @@ -267,7 +267,7 @@ function _holdingsDrawMFHD(holdings, entryNum) { if (hci.length > 0) { _holdingsDrawMFHDEntry(entryNum, opac_strings.CURRENT_INDEXES, hci); } if (ho.length > 0) { _holdingsDrawMFHDEntry(entryNum, opac_strings.ONLINE_VOLUMES, ho); } if (hm.length > 0) { _holdingsDrawMFHDEntry(entryNum, opac_strings.MISSING_VOLUMES, hm); } - if (hinc.length > 0) { _holdingsDrawMFHDEntry(entryNum, opac_strings.INCOMPLETE_VOLUMES, hm); } + if (hinc.length > 0) { _holdingsDrawMFHDEntry(entryNum, opac_strings.INCOMPLETE_VOLUMES, hinc); } if (isXUL()) { dojo.require('openils.Event');