- π¦πΊAustralia VladimirAus Brisbane, Australia
Thank you for your contributions.
Drupal 7 is no longer supported.
Closing issue as outdated.
In the file dfp_googletag.cmd.js
if (inView || !Drupal.settings.dfpLazyLoad || Drupal.settings.dfpTags[index].out_of_page) {
(line 275)
The value of Drupal.settings.dfpLazyLoad is undefined.
That means that the negation always evaluates as true, and thus the conditional is always true.
Then all banners are loaded, even if the inView function finds them out of the viewport.
The patch I am proposing removes that part of the conditional
if (inView || Drupal.settings.dfpTags[index].out_of_page) {
Closed: outdated
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Thank you for your contributions.
Drupal 7 is no longer supported.
Closing issue as outdated.