summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJustAMacUser <[email protected]>2020-05-15 22:25:56 -0400
committerJustAMacUser <[email protected]>2020-05-15 22:25:56 -0400
commit7a0ea9d90ebcfa6e4a252c55d2636a844e3f5b3d (patch)
tree04c2031ec9d41b874fcdfdab9bd46b737eb0f862 /include
parenta1ffc116196e023491ff2c3c7b24f48924ea4fd1 (diff)
Make iframes size responsively.
Diffstat (limited to 'include')
-rw-r--r--include/functions.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/functions.php b/include/functions.php
index 707a87e94..57acb7a24 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -1373,6 +1373,14 @@
$doc->removeChild($doc->firstChild); //remove doctype
$doc = strip_harmful_tags($doc, $allowed_elements, $disallowed_attributes);
+ $entries = $xpath->query('//iframe');
+ foreach ($entries as $entry) {
+ $div = $doc->createElement('div');
+ $div->setAttribute('class', 'embed-responsive');
+ $entry->parentNode->replaceChild($div, $entry);
+ $div->appendChild($entry);
+ }
+
if ($highlight_words && is_array($highlight_words)) {
foreach ($highlight_words as $word) {