From 8dc291d5a235fb211e1e529fc62f7ba4312a5e9b Mon Sep 17 00:00:00 2001 From: Paul Pound Date: Tue, 3 Jun 2014 13:24:30 -0300 Subject: [PATCH] limit journal display to just titles --- targets/cufts/js/cufts_results.js | 40 +++++++++++++++---------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/targets/cufts/js/cufts_results.js b/targets/cufts/js/cufts_results.js index de048df..751ae47 100644 --- a/targets/cufts/js/cufts_results.js +++ b/targets/cufts/js/cufts_results.js @@ -19,29 +19,29 @@ Drupal.behaviors.roblib_search_cufts = { item_str += '' + val.title + ''; item_str += ''; - item_str += '
ISSN: '; - jQuery.each(val.issns, function(key2, val2) { - var newIssn = ""; - var issn = val2.toString(); - if (issn.length == 8) - { - newIssn = issn.substr(0, 4) + '-' + issn.substr(4, 4); - } - else - { - newIssn = issn; - } - item_str += newIssn + ','; - }); - item_str += '
'; + //item_str += '
ISSN: '; + //jQuery.each(val.issns, function(key2, val2) { + // var newIssn = ""; + // var issn = val2.toString(); + // if (issn.length == 8) + // { + // newIssn = issn.substr(0, 4) + '-' + issn.substr(4, 4); + // } + // else + // { + // newIssn = issn; + // } + // item_str += newIssn + ','; + //}); + //item_str += '
'; - item_str += '
'; + //item_str += '
'; - jQuery.each(val.fulltext_coverages, function(key3, val3) { - item_str += val3; - }); + //jQuery.each(val.fulltext_coverages, function(key3, val3) { + // item_str += val3 + " "; + //}); - item_str += '
'; + //item_str += '
'; item_str += ''; items.push(item_str);