Files
luxtools-plugin/js/gallery-thumbnails.js
2026-01-28 12:15:08 +01:00

27 lines
760 B
JavaScript

/* global window, document */
(function () {
'use strict';
var Luxtools = window.Luxtools || (window.Luxtools = {});
// ============================================================
// Gallery Thumbnails Module
// ============================================================
// Thumbnail loading now relies on native loading="lazy" attribute.
// The browser handles deferred loading, connection limits, and
// automatic cancellation on navigation.
//
// This module is kept as a stub for potential future enhancements.
Luxtools.GalleryThumbnails = (function () {
function init() {
// Native lazy loading handles everything.
// No JavaScript intervention needed.
}
return {
init: init
};
})();
})();