diff --git a/static/js/info.js b/static/js/info.js index 0d64462..10f2233 100644 --- a/static/js/info.js +++ b/static/js/info.js @@ -40,18 +40,17 @@ oml.ui.info = function() { .css({margin: '16px 0 8px 0'}) .appendTo(that); $('
') - .css({ - fontWeight: 'bold' - }) + .addClass('OxSelectable') + .css({fontWeight: 'bold'}) .text(data.title || '') .appendTo(that); $('
') - .css({ - fontWeight: 'bold' - }) + .addClass('OxSelectable') + .css({fontWeight: 'bold'}) .text((data.author || []).join(', ')) .appendTo(that); $('
') + .addClass('OxSelectable') .css({marginTop: '8px'}) .text(result.data.description || '') .appendTo(that);