Skip to content

Commit

Permalink
Dev: Fix quickly HTML5 editor in plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnoulle committed Dec 22, 2016
1 parent 353f769 commit 52a2b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/extensions/SettingsWidget/SettingsWidget.php
Expand Up @@ -360,7 +360,7 @@ public function renderHtml($name, array $metaData, $form = null)
$editorOptions = array_merge(array(
'html' => true,
), isset($metaData['editorOptions']) ? $metaData['editorOptions'] : array());
return Chtml::tag('div', $htmlOptions,
return Chtml::tag('div', array("style"=>'height:auto;width:100%'),
$this->widget('yiiwheels.widgets.html5editor.WhHtml5Editor', array(
'name' => $name,
'value' => $value,
Expand Down

0 comments on commit 52a2b9c

Please sign in to comment.