forked from 0x2620/pandora
make traceback selectable, fixes #397
This commit is contained in:
parent
86beba3039
commit
eb0e9a79f7
1 changed files with 5 additions and 1 deletions
|
@ -134,7 +134,11 @@ pandora.ui.logsDialog = function() {
|
||||||
})
|
})
|
||||||
],
|
],
|
||||||
closeButton: true,
|
closeButton: true,
|
||||||
content: $('<code>').append($('<pre>').css({margin: '16px'}).html(value.text)),
|
content: $('<code>').append($('<pre>').css({
|
||||||
|
margin: '16px',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
}).html(value.text)),
|
||||||
height: height - 48,
|
height: height - 48,
|
||||||
keys: {enter: 'close', escape: 'close'},
|
keys: {enter: 'close', escape: 'close'},
|
||||||
maximizeButton: true,
|
maximizeButton: true,
|
||||||
|
|
Loading…
Reference in a new issue