My-Little-Forum / mylittleforum

A simple PHP and MySQL based internet forum that displays the messages in classical threaded view (tree structure)
GNU General Public License v3.0
121 stars 47 forks source link

Change: add lazy loading attribute to img elements in forum entries #667

Closed auge8472 closed 1 year ago

auge8472 commented 1 year ago

This adds the attribute loading with the value lazy to all images in forum entries. Images in the browser viewport will be loaded immediately and outside the viewport at the time, the browser detects that they are about to enter the viewport. Browsers, that doesn't support the attribute will ignore it and will load the images as without the attribute (so as before).

closes #666