Skip to content

Commit

Permalink
fix: noscript image tag issue causing problems with too specific CSS …
Browse files Browse the repository at this point in the history
…selectors
  • Loading branch information
selul committed Mar 15, 2019
1 parent 386a45e commit 324effd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/lazyload_replacer.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public function lazyload_tag_replace( $new_tag, $original_url, $new_url, $optml_
$new_tag
);

return '<noscript>' . $no_script_tag . '</noscript>' . $new_tag;
return $new_tag . '<noscript>' . $no_script_tag . '</noscript>';
}

/**
Expand Down

0 comments on commit 324effd

Please sign in to comment.