1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-06-07 08:07:51 +00:00
jekyll-theme-chirpy/assets/js/_utils/img-hyperlink.js
2021-01-26 20:24:47 +08:00

9 lines
148 B
JavaScript

/*
* Find out the <a> tag contains an image and mark it.
*/
$(function() {
const MARK = "img-hyperlink";
$("a:has(img)").addClass(MARK);
});