summaryrefslogtreecommitdiff
path: root/plugins/shorten_expanded/init.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-12-11 09:22:30 +0300
committerAndrew Dolgov <[email protected]>2020-12-11 09:22:30 +0300
commit43bd3394c31ed67cafddd2c147144bdb67f32477 (patch)
tree47491aadaa3f870da7433f577632af33b4e2f414 /plugins/shorten_expanded/init.php
parent71c8d8d365f62ecacceaee9f5fe70c344a18dd4b (diff)
shorten_expanded: remove loading=lazy from images if enabled
Diffstat (limited to 'plugins/shorten_expanded/init.php')
-rw-r--r--plugins/shorten_expanded/init.php17
1 files changed, 16 insertions, 1 deletions
diff --git a/plugins/shorten_expanded/init.php b/plugins/shorten_expanded/init.php
index 64b4ad7ab..f816a838d 100644
--- a/plugins/shorten_expanded/init.php
+++ b/plugins/shorten_expanded/init.php
@@ -11,6 +11,21 @@ class Shorten_Expanded extends Plugin {
function init($host) {
$this->host = $host;
+ $host->add_hook($host::HOOK_SANITIZE, $this);
+ }
+
+ // native lazy loading messes with plugin height calculation because images get loaded
+ // after headline is actually rendered (off screen) so we force disable it
+ function hook_sanitize($doc) {
+ $xpath = new DOMXPath($doc);
+
+ $entries = $xpath->query('(//*[@loading="lazy"])');
+
+ foreach ($entries as $entry) {
+ $entry->removeAttribute("loading");
+ }
+
+ return $doc;
}
function get_css() {
@@ -25,4 +40,4 @@ class Shorten_Expanded extends Plugin {
return 2;
}
-} \ No newline at end of file
+}