krata/assets/js/_commons/img-link.js

9 lines
134 B
JavaScript
Raw Normal View History

2021-04-16 07:04:48 +02:00
/*
* Find the image links and mark them
*/
$(function() {
const MARK = "img-link";
$("#main a").has("img").addClass(MARK);
});