use class .OxSelectable, not style -user-select
This commit is contained in:
parent
9b83fb3c0a
commit
de04f0816f
8 changed files with 64 additions and 66 deletions
|
|
@ -156,11 +156,12 @@ pandora.ui.logsDialog = function() {
|
|||
})
|
||||
],
|
||||
closeButton: true,
|
||||
content: $('<code>').append($('<pre>').css({
|
||||
margin: '16px',
|
||||
MozUserSelect: 'text',
|
||||
WebkitUserSelect: 'text'
|
||||
}).text(value.text)),
|
||||
content: $('<code>').append(
|
||||
$('<pre>')
|
||||
.addClass('OxSelectable')
|
||||
.css({margin: '16px'})
|
||||
.text(value.text)
|
||||
),
|
||||
height: height - 48,
|
||||
keys: {enter: 'close', escape: 'close'},
|
||||
maximizeButton: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue