epic
epic copied to clipboard
Hidden textarea is showing when editor is created inside a parent element
When I create a epic editor inside a div the hidden textarea shows, like so:
The html I am using is
<div class="form-group">
<label for="content" class="control-label">Content</label>
<div id="content" class="controls"></div>
</div>
and the Template render function is:
Template.caseStudySubmit.rendered = function() {
return Epic.create('content', {});
};
I notice the same problem on your themed demo.
I am viewing this on Chrome.
Thanks
+1
I was able to fix it by finding the ID of the extra box and hiding it.