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 +'
'; } })