Skip to content

Commit

Permalink
Better default
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Aug 18, 2014
1 parent 9f3694a commit 5b7b665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imp/js/editor.js
Expand Up @@ -41,7 +41,7 @@ var IMP_Editor = Class.create({
start: function()
{
if (!this.editor) {
this.config.height = $(this.id).getHeight() - 75;
this.config.height = Math.max($(this.id).getHeight(), 200) - 75;
this.editor = CKEDITOR.replace(this.id, this.config);
}
},
Expand Down

0 comments on commit 5b7b665

Please sign in to comment.