Skip to content
This repository has been archived by the owner on Aug 5, 2022. It is now read-only.

Commit

Permalink
simulate something like fullScreen but prevent fullScreen mode from g…
Browse files Browse the repository at this point in the history
…oing behind menu bar
  • Loading branch information
ericpyle committed Dec 5, 2019
1 parent 5e77bd7 commit 3a704dc
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions app/components/SubmitHelpTicket.js
Original file line number Diff line number Diff line change
Expand Up @@ -615,13 +615,21 @@ class SubmitHelpTicket extends React.Component<Props> {
}}
disabled={isLoading}
value={description}
style={{ height: '500px', width: '100%' }}
style={{
width: '100%',
height: '65%',
position: 'fixed',
left: '0',
top: '230px',
zIndex: '1000'
}}
renderHTML={text => this.mdParser.render(text)}
config={{
view: {
menu: true,
md: true,
html: true
html: true,
fullScreen: false
},
table: {
maxRow: 5,
Expand Down

0 comments on commit 3a704dc

Please sign in to comment.