epic icon indicating copy to clipboard operation
epic copied to clipboard

Hidden textarea is showing when editor is created inside a parent element

Open biofractal opened this issue 9 years ago • 1 comments

When I create a epic editor inside a div the hidden textarea shows, like so:

screenshot_1

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

biofractal avatar Sep 16 '15 15:09 biofractal

+1

I was able to fix it by finding the ID of the extra box and hiding it.

linker-err0r avatar Apr 22 '16 18:04 linker-err0r