mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-09 00:58:03 +00:00
10 lines
127 B
JavaScript
10 lines
127 B
JavaScript
/**
|
|
* Setup image lazy-load
|
|
*/
|
|
|
|
export function imgLazy() {
|
|
if ($('#core-wrapper img[data-src]') <= 0) {
|
|
return;
|
|
}
|
|
}
|