summaryrefslogtreecommitdiffstats
path: root/data/js/script.js
blob: 7b103699aa280b4d07d95e397a30202fb1c66f88 (plain)
1
2
3
4
5
6
7
(function($) {
	$(function() {
		if ($("img.lazyload").length) {
			$("img.lazyload").show().lazyload({treshold: 200});
		}
	});
})(jQuery);