Photoswipe now allows alternate text for caption
Adding changes from hugo-easy-gallery f0e6d5d62f58284beadf98db71861af90f2cff8e
This commit is contained in:
parent
e214c15e36
commit
2a110c80e5
@ -10,7 +10,7 @@ Beautiful Hugo adds a few custom shortcodes created by [Li-Wen Yip](https://www.
|
|||||||
{{< gallery caption-effect="fade" >}}
|
{{< gallery caption-effect="fade" >}}
|
||||||
{{< figure thumb="-thumb" link="/img/hexagon.jpg" >}}
|
{{< figure thumb="-thumb" link="/img/hexagon.jpg" >}}
|
||||||
{{< figure thumb="-thumb" link="/img/sphere.jpg" caption="Sphere" >}}
|
{{< figure thumb="-thumb" link="/img/sphere.jpg" caption="Sphere" >}}
|
||||||
{{< figure thumb="-thumb" link="/img/triangle.jpg" caption="This is a long comment about a triangle" >}}
|
{{< figure thumb="-thumb" link="/img/triangle.jpg" caption="Triangle" alt="This is a long comment about a triangle" >}}
|
||||||
{{< /gallery >}}
|
{{< /gallery >}}
|
||||||
{{< load-photoswipe >}}
|
{{< load-photoswipe >}}
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ The above gallery was created using the following shortcodes:
|
|||||||
{{</* gallery caption-effect="fade" */>}}
|
{{</* gallery caption-effect="fade" */>}}
|
||||||
{{</* figure thumb="-thumb" link="/img/hexagon.jpg" */>}}
|
{{</* figure thumb="-thumb" link="/img/hexagon.jpg" */>}}
|
||||||
{{</* figure thumb="-thumb" link="/img/sphere.jpg" caption="Sphere" */>}}
|
{{</* figure thumb="-thumb" link="/img/sphere.jpg" caption="Sphere" */>}}
|
||||||
{{</* figure thumb="-thumb" link="/img/triangle.jpg" caption="This is a long comment about a triangle" */>}}
|
{{</* figure thumb="-thumb" link="/img/triangle.jpg" caption="Triangle" alt="This is a long comment about a triangle" */>}}
|
||||||
{{</* /gallery */>}}
|
{{</* /gallery */>}}
|
||||||
{{</* load-photoswipe */>}}
|
{{</* load-photoswipe */>}}
|
||||||
```
|
```
|
||||||
|
@ -15,9 +15,10 @@ $( document ).ready(function() {
|
|||||||
// get properties from child a/img/figcaption elements,
|
// get properties from child a/img/figcaption elements,
|
||||||
var $figure = $(this),
|
var $figure = $(this),
|
||||||
$a = $figure.find('a'),
|
$a = $figure.find('a'),
|
||||||
|
$img = $figure.find('img'),
|
||||||
$src = $a.attr('href'),
|
$src = $a.attr('href'),
|
||||||
$title = $figure.find('figcaption').html(),
|
$title = $img.attr('alt'),
|
||||||
$msrc = $figure.find('img').attr('src');
|
$msrc = $img.attr('src');
|
||||||
// if data-size on <a> tag is set, read it and create an item
|
// if data-size on <a> tag is set, read it and create an item
|
||||||
if ($a.data('size')) {
|
if ($a.data('size')) {
|
||||||
var $size = $a.data('size').split('x');
|
var $size = $a.data('size').split('x');
|
||||||
|
Loading…
Reference in New Issue
Block a user