blob: a7178eb09e2b369ccd418a60e479d0621437e9de (
plain)
1
2
3
4
5
6
7
8
9
10
|
window.addEventListener("load", function() {
var options = {
captions : function(t) {
var e=t.parentElement.getElementsByTagName("figcaption")[0];
return!!e&&e.textContent
}
};
baguetteBox.run( ".wp-block-gallery", options);
baguetteBox.run( ".wp-block-image", options);
});
|