Commit ec0a68c6 authored by LianaHus's avatar LianaHus

fixed vertical scroll for modal dialog

added a title for Publish to github
parent 63f7e029
...@@ -319,7 +319,7 @@ fileExplorer.prototype.init = function () { ...@@ -319,7 +319,7 @@ fileExplorer.prototype.init = function () {
fileExplorer.prototype.publishToGist = function () { fileExplorer.prototype.publishToGist = function () {
modalDialogCustom.confirm( modalDialogCustom.confirm(
null, 'Create a public gist',
'Are you sure you want to publish all your files anonymously as a public gist on github.com?', 'Are you sure you want to publish all your files anonymously as a public gist on github.com?',
() => { this.toGist() } () => { this.toGist() }
) )
......
...@@ -13,6 +13,8 @@ var css = csjs` ...@@ -13,6 +13,8 @@ var css = csjs`
} }
.modalBody { .modalBody {
word-break: break-word; word-break: break-word;
overflow-y: auto;
max-height: 600px;
} }
.modalFooterOk { .modalFooterOk {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment