inacho / bootstrap-markdown-editor

Markdown editor for Bootstrap with preview, image upload support, shortcuts and other features.
MIT License
294 stars 76 forks source link

Fix width problem #14

Closed okkez closed 8 years ago

okkez commented 8 years ago
$('div#editor').markdownEditor({
  preview: true,
  width: '80%'
});

In previous version's html:

<div id="editor" class="md-container" style="width: 80%">
  <div id="md-editor ace-editor ace-tomorrow" style="widht: 80%; height: 400px;
  font-size:14px; display: block;" draggable="false">
  </div>
</div>

In this version's html:

<div id="editor" class="md-container" style="width: 80%">
  <div id="md-editor ace-editor ace-tomorrow" style="height: 400px;
  font-size:14px; display: block;" draggable="false">
  </div>
</div>
okkez commented 8 years ago
okkez commented 8 years ago

Thanks!!