1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-18 13:44:15 +00:00

Added caption sytle for hyperlinked images (#144).

This commit is contained in:
Cotes Chung
2020-10-07 12:24:25 +08:00
parent c221a3e0bc
commit cb908bbb2b
3 changed files with 51 additions and 18 deletions

View File

@@ -0,0 +1,16 @@
/*
* Find out the <a> tag contains an image and mark it.
*
* v2.5.1
* https://github.com/cotes2020/jekyll-theme-chirpy
* © 2020 Cotes Chung
* MIT Licensed
*/
$(function() {
var MARK="img-hyperlink";
$("a:has(img)").addClass(MARK);
});

View File

@@ -13,3 +13,5 @@ layout: compress
{% include_relative lib/_bootstrap-toc.min.js %}
{% include_relative _utils/toc-filter.js %}
{% include_relative _utils/img-hyperlink.js %}