From: Jeff Godin Date: Tue, 22 May 2012 13:31:02 +0000 (-0400) Subject: Configure staff client to use tadl-legacy skin X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7eb4b30719c7677b1b950ff323b5913ea479e68f;p=evergreen%2Ftadl.git Configure staff client to use tadl-legacy skin Using standard options in custom.js, direct the staff client to use the "tadl-legacy" opac skin. Signed-off-by: Jeff Godin --- diff --git a/Open-ILS/xul/staff_client/server/skin/custom.js b/Open-ILS/xul/staff_client/server/skin/custom.js index 58db82c79d..405a03a4ac 100644 --- a/Open-ILS/xul/staff_client/server/skin/custom.js +++ b/Open-ILS/xul/staff_client/server/skin/custom.js @@ -1,4 +1,4 @@ -urls['opac'] = '/opac/' + LOCALE + '/skin/tadl/xml/advanced.xml?nps=1'; -urls['opac_rdetail'] = '/opac/' + LOCALE + '/skin/tadl/xml/rdetail.xml'; -urls['opac_rresult'] = '/opac/' + LOCALE + '/skin/tadl/xml/rresult.xml'; -urls['browser'] = '/opac/' + LOCALE + '/skin/tadl/xml/advanced.xml?nps=1'; +urls['opac'] = '/opac/' + LOCALE + '/skin/tadl-legacy/xml/advanced.xml?nps=1'; +urls['opac_rdetail'] = '/opac/' + LOCALE + '/skin/tadl-legacy/xml/rdetail.xml'; +urls['opac_rresult'] = '/opac/' + LOCALE + '/skin/tadl-legacy/xml/rresult.xml'; +urls['browser'] = '/opac/' + LOCALE + '/skin/tadl-legacy/xml/advanced.xml?nps=1';