gallery fix

This commit is contained in:
2026-02-21 21:39:23 +01:00
parent e4e0bdf8f1
commit 48e2055b6a
20 changed files with 1064 additions and 481 deletions

View File

@@ -44,6 +44,13 @@ $(document).on("change", ".quickThumbShow", function(evt) {
});
var numCols = 4;
var GRID_V2_ENABLED = (function () {
try {
return new URLSearchParams(window.location.search).get('grid') === 'v2';
} catch (e) {
return false;
}
})();
$(document).ready(function() {
@@ -73,22 +80,28 @@ $(document).ready(function() {
$(".photo_frame").css("width", "250px");
}
$container1.isotope({
masonry: { columnWidth: wc }
});
if (!GRID_V2_ENABLED) {
$container1.isotope({
masonry: { columnWidth: wc }
});
}
}
$container1.imagesLoaded( function() {
$container1.isotope({
itemSelector : '.photo_frame',
layoutMode : 'masonry'
if (!GRID_V2_ENABLED) {
$container1.imagesLoaded( function() {
$container1.isotope({
itemSelector : '.photo_frame',
layoutMode : 'masonry'
});
size();
});
size();
});
}
$(window).smartresize(size);
if (!GRID_V2_ENABLED) {
$(window).smartresize(size);
}
$(".summernote").summernote();
$(".summernote_lite").summernote({
@@ -101,21 +114,25 @@ $(document).ready(function() {
});
var $container = $('.container_gallery');
$container.imagesLoaded( function(){
$container.isotope({
itemSelector : '.photo_frame',
layoutMode : 'masonry'
if (!GRID_V2_ENABLED) {
$container.imagesLoaded( function(){
$container.isotope({
itemSelector : '.photo_frame',
layoutMode : 'masonry'
});
size();
});
size();
});
}
var $container = $('.container_news');
$container.imagesLoaded( function(){
$container.isotope({
itemSelector : '.news_frame',
layoutMode : 'masonry'
if (!GRID_V2_ENABLED) {
$container.imagesLoaded( function(){
$container.isotope({
itemSelector : '.news_frame',
layoutMode : 'masonry'
});
});
});
}
if ($("a[rel^='prettyPhoto']").length > 0) {
$("a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded'});