Merge pull request #1335 from brockhaus/develop

v.1.0.4: Support for upcoming imagegrid
pull/1336/head
Hypolite Petovan 2022-12-14 13:19:52 -05:00 committed by GitHub
commit cd620d2134
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -2,8 +2,6 @@ MODULE=fancybox
cd ..
# read actual version from module.json
# old releases not needed anymore
mkdir -p $MODULE/dist
rm $MODULE/dist/*

View File

@ -2,7 +2,7 @@
/**
* Name: Fancybox
* Description: Open media attachments of posts into a fancybox overlay.
* Version: 1.03
* Version: 1.04
* Author: Grischa Brockhaus <grischa@brockha.us>
*/
@ -47,7 +47,7 @@ function fancybox_render(App $a, array &$b){
// Local content images attached:
$text = preg_replace_callback(
'#<div class="body-attach">.*?</div>#s',
'#<div class="(body-attach|imagegrid-column)">.*?</div>#s',
function ($matches) use ($gallery) {
return str_replace('<a href', '<a data-fancybox="' . $gallery . '" href', $matches[0]);
},