From fedfa45f07198e64deb4f1e287357ffa286f5a66 Mon Sep 17 00:00:00 2001 From: Paul Pound Date: Tue, 24 Jun 2014 11:06:23 -0300 Subject: [PATCH] added abstract to the popups for eds targets --- css/roblib_search.base.css | 1 + targets/eds/js/eds_results.js | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/css/roblib_search.base.css b/css/roblib_search.base.css index a8b42dc..ebca601 100644 --- a/css/roblib_search.base.css +++ b/css/roblib_search.base.css @@ -27,6 +27,7 @@ .pane-title.block-title{ color:inherit; + font-weight:inherit; } .roblib-search-eds-articles-header { border-color:indianred; diff --git a/targets/eds/js/eds_results.js b/targets/eds/js/eds_results.js index e0cc429..cb02fc4 100644 --- a/targets/eds/js/eds_results.js +++ b/targets/eds/js/eds_results.js @@ -74,8 +74,8 @@ function edsPopulatePopupDivs(content, val, counter){ content[counter] = ''; try{ jQuery.each(val.DetailedRecord, function(key, value){ - if(value.Group == 'Note' || value.Group == 'TOC') { - content[counter] += '
' + value.Label + '' ; + if(value.Group =='Ab' || value.Group == 'Note' || value.Group == 'TOC') { + content[counter] += '
' + value.Label + ': ' ; content[counter] += ' ' + value.Data +'
'; } })