fix youtube embed sizing and weird zindexing; fix single col video sizing inconsistency across other browsers

This commit is contained in:
Ginger Wong
2020-08-27 12:25:46 -07:00
parent b549b21257
commit 43e88ee81d
7 changed files with 18 additions and 54 deletions

View File

@@ -211,9 +211,6 @@ export function convertToText(str = '') {
// Replace `<p>` (from IE).
value = value.replace(/<p>/gi, '\n');
// Remove extra tags.
value = value.replace(/<(.*?)>/g, '');
// Trim each line.
value = value
.split('\n')