make text in info panel selectable
This commit is contained in:
parent
a6e95f44ca
commit
bc9630e803
1 changed files with 5 additions and 6 deletions
|
@ -40,18 +40,17 @@ oml.ui.info = function() {
|
|||
.css({margin: '16px 0 8px 0'})
|
||||
.appendTo(that);
|
||||
$('<div>')
|
||||
.css({
|
||||
fontWeight: 'bold'
|
||||
})
|
||||
.addClass('OxSelectable')
|
||||
.css({fontWeight: 'bold'})
|
||||
.text(data.title || '')
|
||||
.appendTo(that);
|
||||
$('<div>')
|
||||
.css({
|
||||
fontWeight: 'bold'
|
||||
})
|
||||
.addClass('OxSelectable')
|
||||
.css({fontWeight: 'bold'})
|
||||
.text((data.author || []).join(', '))
|
||||
.appendTo(that);
|
||||
$('<div>')
|
||||
.addClass('OxSelectable')
|
||||
.css({marginTop: '8px'})
|
||||
.text(result.data.description || '')
|
||||
.appendTo(that);
|
||||
|
|
Loading…
Reference in a new issue