1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-06-08 08:37:53 +00:00
jekyll-theme-chirpy/assets/js/_utils/img-hyperlink.js
2021-01-25 06:43:02 +08:00

14 lines
252 B
JavaScript

/*
* 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() {
const MARK = "img-hyperlink";
$("a:has(img)").addClass(MARK);
});