Expand image for {attachment slug link=self}
Clicking on the image will no longer open it directly, but expand it instead.
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
$(function() {
|
||||
/* Expand images when their link points to a jpg/png/gif/webp */
|
||||
var imgs = $('.expand-image-links a img')
|
||||
.off('click')
|
||||
.on('click', function(e){
|
||||
|
||||
function _expandImg(e) {
|
||||
var $img = $(this);
|
||||
var href = $img.parent().attr('href');
|
||||
|
||||
@@ -14,5 +12,15 @@ $(function() {
|
||||
.html(overlay_img);
|
||||
e.preventDefault();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$.fn.expandOnClick = function() {
|
||||
$(this)
|
||||
.off('click')
|
||||
.on('click', _expandImg);
|
||||
};
|
||||
|
||||
/* Expand images when their link points to a jpg/png/gif/webp */
|
||||
$('.expand-image-links a img').expandOnClick();
|
||||
$('a.expand-image-links img').expandOnClick();
|
||||
});
|
||||
|
@@ -1,6 +1,6 @@
|
||||
| {% if 'link' in tag_args and tag_args['link'] != 'none' %}
|
||||
| {% if tag_args['link'] == 'self' %}
|
||||
a(href="{{ vars['l'].link }}")
|
||||
a.expand-image-links(href="{{ vars['l'].link }}")
|
||||
img(src="{{ vars['l'].link }}", alt="{{ file.filename }}")
|
||||
| {% else %}
|
||||
a(href="{{ tag_args['link'] }}", target="_blank")
|
||||
|
Reference in New Issue
Block a user