If a video is the only content in a wysiwyg, it's not possible to type into the wysiwyg in Chrome (without using source mode)

this is the workaround that we're using to get around this issue:
/media/js/media.filter.js, line 230

return Drupal.media.filter.getWrapperStart(i) + markup + Drupal.media.filter.getWrapperEnd(i);

changed to:

var output = Drupal.media.filter.getWrapperStart(i) + markup + Drupal.media.filter.getWrapperEnd(i);
return output + '<p>&nbsp;</p>';

Comments

Chris Matthews’s picture

Version: 7.x-2.0-alpha3 » 7.x-2.x-dev
Status: Active » Closed (outdated)

Closing this issue as outdated. However, if you think this issue is still important, please let us know and we will gladly re-open it for review.
sincerely,
- the Drupal Media Team