kollapsminoriteten/wp-content/plugins/jetpack/modules/widgets/gallery/js/gallery.js

15 lines
444 B
JavaScript
Raw Normal View History

2020-09-15 14:30:05 +02:00
( function ( $ ) {
2019-11-15 23:26:29 +01:00
// Fixes a bug with carousels being triggered even when a widget's Link To option is not set to carousel.
// Happens when another gallery is loaded on the page, either in a post or separate widget
2025-02-28 08:42:11 +01:00
$( 'body' ).on(
'click',
'.widget-gallery .no-carousel .tiled-gallery-item a',
function ( event ) {
// Have to trigger default, instead of carousel
event.stopPropagation();
2019-11-15 23:26:29 +01:00
2025-02-28 08:42:11 +01:00
return true;
}
);
2019-11-15 23:26:29 +01:00
} )( jQuery );