27 lines
760 B
JavaScript
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
|
|
};
|
|
})();
|
|
})();
|